diff options
author | Aaron Parecki <aaron@parecki.com> | 2015-07-25 03:55:00 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2015-07-25 03:55:00 -0700 |
commit | 35bd5a9e68b50bf57963ea626a3fbf7432b37c93 (patch) | |
tree | cc5e9b506494eaf4c59a1200e4bcea875acba46a /lib/config.template.php | |
parent | 60830007641c985c11c8ac8f609aab735dd84a96 (diff) | |
parent | afa182bc120371a15b28227ce712cba501a78d05 (diff) |
Merge branch 'master' of github.com:aaronpk/IndiePost
Diffstat (limited to 'lib/config.template.php')
-rw-r--r-- | lib/config.template.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/config.template.php b/lib/config.template.php index dae8968..ee822bb 100644 --- a/lib/config.template.php +++ b/lib/config.template.php @@ -4,11 +4,16 @@ class Config { public static $base_url = 'http://quill.dev/'; public static $gaid = ''; + // MySQL (default) public static $dbHost = '127.0.0.1'; public static $dbName = 'quill'; public static $dbUsername = 'quill'; public static $dbPassword = ''; + // Sqlite + // public static $dbType = 'sqlite'; + // public static $dbFilePath = './example.db'; + public static $jwtSecret = 'xxx'; public static $fbClientID = ''; |