diff options
author | Wu Cheng-Han | 2016-10-10 16:25:51 +0800 |
---|---|---|
committer | Wu Cheng-Han | 2016-10-10 16:25:51 +0800 |
commit | bf4c6d021c353f9f6779ba813dab8d44b17addbf (patch) | |
tree | 6c762ffcac05c34b1f6601eb65b71af705c88b84 /public/js/config.js.example | |
parent | 917537ddbfcf21b93ceaadb89fd356e93565d0f9 (diff) |
Extract config.js from common.js to make client setting file clean and also make upgrade easier
Diffstat (limited to '')
-rw-r--r-- | public/js/config.js.example | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/public/js/config.js.example b/public/js/config.js.example new file mode 100644 index 00000000..197d18f2 --- /dev/null +++ b/public/js/config.js.example @@ -0,0 +1,10 @@ +//config +var domain = ''; // domain name +var urlpath = ''; // sub url path, like: www.example.com/<urlpath> +//settings +var debug = false; + +var GOOGLE_API_KEY = ''; +var GOOGLE_CLIENT_ID = ''; + +var DROPBOX_APP_KEY = '';
\ No newline at end of file |