diff options
author | Camil Staps | 2016-07-27 23:52:00 +0200 |
---|---|---|
committer | Camil Staps | 2016-07-27 23:52:00 +0200 |
commit | 7f877370163648460f6ffd8abb3ee9caa774441c (patch) | |
tree | a41d3d8dbf310ffdbc484cf0a3992126845e9d8e /conf.private.example.php | |
parent | Changelog cleanup (diff) |
Moved private information to conf.private.php
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', ...); |