diff options
Diffstat (limited to 'conf.private.example.php')
-rw-r--r-- | conf.private.example.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/conf.private.example.php b/conf.private.example.php new file mode 100644 index 0000000..90b4c51 --- /dev/null +++ b/conf.private.example.php @@ -0,0 +1,13 @@ +<?php +// Database settings (should be mysql) +$db_host = 'localhost'; +$db_name = 'my_database'; +$db_user = 'my_database_user'; +$db_pass = 'my_password'; +$db_port = '3306'; + +// Braintree settings +define('BRAINTREE_ENABLED', true); +define('BRAINTREE_MERCHANT', ...); +define('BRAINTREE_KEY_PUBLIC', ...); +define('BRAINTREE_KEY_PRIVATE', ...); |