diff options
author | Aaron Parecki <aaron@parecki.com> | 2015-07-25 03:42:47 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2015-07-25 03:42:47 -0700 |
commit | 41fac1f6f109912defa07d7acb6b95e015ad4339 (patch) | |
tree | daeb304c6a427836166c4ccb65cb247add0b3de0 /lib/config.template.php | |
parent | 0c27b5bdd561aa27e1138f4fdc2be04bd828ff69 (diff) | |
parent | 8de9fd30276a273e715c0f3ee4cf227d2927bb36 (diff) |
Merge pull request #20 from jeena/sqlite
Adds possibility to use SQLite as db
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 = ''; |