summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorWu Cheng-Han2016-10-10 16:25:51 +0800
committerWu Cheng-Han2016-10-10 16:25:51 +0800
commitbf4c6d021c353f9f6779ba813dab8d44b17addbf (patch)
tree6c762ffcac05c34b1f6601eb65b71af705c88b84 /README.md
parent917537ddbfcf21b93ceaadb89fd356e93565d0f9 (diff)
Extract config.js from common.js to make client setting file clean and also make upgrade easier
Diffstat (limited to '')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 3443e1d5..ea3ab5ad 100644
--- a/README.md
+++ b/README.md
@@ -83,10 +83,10 @@ There are some configs you need to change in the files below
```
./config.json --- for server settings
-./public/js/common.js --- for client settings
+./public/js/config.js --- for client settings
```
-Client settings `common.js`
+Client settings `config.js`
---
| variables | example values | description |
@@ -148,7 +148,7 @@ Third-party integration api key settings
| ------- | --------- | ----------- |
| facebook, twitter, github, gitlab, dropbox, google | `config.json` | for signin |
| imgur | `config.json` | for image upload |
-| google drive, dropbox | `public/js/common.js` | for export and import |
+| google drive, dropbox | `public/js/config.js` | for export and import |
Third-party integration oauth callback urls
---