diff options
author | Yukai Huang | 2017-01-13 22:46:38 +0800 |
---|---|---|
committer | Yukai Huang | 2017-01-13 22:46:38 +0800 |
commit | c2a8911b9c7872ea0d085020aa17e82162130f3d (patch) | |
tree | ab678f8ee0cb1ce95767e349ac5939237b0825c0 /public/js/lib/config | |
parent | 3566d71aea5486709f73ba7fac5a421993b41f00 (diff) |
Move config variable to lib/config
Diffstat (limited to 'public/js/lib/config')
-rw-r--r-- | public/js/lib/config/index.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/public/js/lib/config/index.js b/public/js/lib/config/index.js new file mode 100644 index 00000000..bffbadd9 --- /dev/null +++ b/public/js/lib/config/index.js @@ -0,0 +1,19 @@ +import configJson from '../../../../config.json'; // root path json config + +const config = 'production' === process.env.NODE_ENV ? configJson.production : configJson.development; + +export const GOOGLE_API_KEY = config.google && config.google.apiKey; +export const GOOGLE_CLIENT_ID = config.google && config.google.clientID +export const DROPBOX_APP_KEY = config.dropbox && config.dropbox.appKey + +export const domain = config.domain; +export const urlpath = config.urlpath; +export const debug = config.debug; + +export const port = window.location.port; +export const serverurl = `${window.location.protocol}//${domain ? domain : window.location.hostname}${port ? ':' + port : ''}${urlpath ? '/' + urlpath : ''}`; +window.serverurl = serverurl; +export const noteid = urlpath ? window.location.pathname.slice(urlpath.length + 1, window.location.pathname.length).split('/')[1] : window.location.pathname.split('/')[1]; +export const noteurl = `${serverurl}/${noteid}`; + +export const version = '0.5.0'; |