diff options
author | Raccoon | 2017-03-03 09:22:35 +0800 |
---|---|---|
committer | GitHub | 2017-03-03 09:22:35 +0800 |
commit | 48592d692c2b8a71e3ca9e7f0bc34f230eea1542 (patch) | |
tree | 053538d49b92121e29e0e576d2e5e0b249d28537 /config.json.example | |
parent | a8b99638b2bc4db0dffd643b96287faf4f97e030 (diff) | |
parent | 0bea4da6238b1f46562b146b32d88fc8d8b9060a (diff) |
Merge branch 'master' into feature/addSecrets
Diffstat (limited to '')
-rw-r--r-- | config.json.example | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/config.json.example b/config.json.example index 57669cf9..9ee00c09 100644 --- a/config.json.example +++ b/config.json.example @@ -2,18 +2,13 @@ "test": { "db": { "dialect": "sqlite", - "storage": "./db.hackmd.sqlite" + "storage": ":memory:" } }, "development": { - "domain": "localhost", "db": { - "username": "", - "password": "", - "database": "hackmd", - "host": "localhost", - "port": "3306", - "dialect": "mysql" + "dialect": "sqlite", + "storage": "./db.hackmd.sqlite" } }, "production": { @@ -45,11 +40,13 @@ }, "dropbox": { "clientID": "change this", - "clientSecret": "change this" + "clientSecret": "change this", + "appKey": "change this" }, "google": { "clientID": "change this", - "clientSecret": "change this" + "clientSecret": "change this", + "apiKey": "change this" }, "ldap": { "url": "ldap://change_this", |