summaryrefslogtreecommitdiff
path: root/lib/config
diff options
context:
space:
mode:
authorChristoph (Sheogorath) Kern2018-05-10 00:13:23 +0200
committerGitHub2018-05-10 00:13:23 +0200
commite4e198c81909949ade36ba37b2b36ddf415c8bb6 (patch)
treeb0f68f570f67e5dd6041ba632bef53acb70e9e94 /lib/config
parent2232905c4a1b99b9316b9953c91f5265358ba00e (diff)
parent2cc3058a44473a150b1dedeb5257d73859b7acae (diff)
Merge pull request #813 from SISheogorath/fix/googleAPI
Workaround Google API problems
Diffstat (limited to 'lib/config')
-rw-r--r--lib/config/default.js1
-rw-r--r--lib/config/environment.js1
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/config/default.js b/lib/config/default.js
index 68849d36..db0c0362 100644
--- a/lib/config/default.js
+++ b/lib/config/default.js
@@ -104,6 +104,7 @@ module.exports = {
appKey: undefined
},
google: {
+ apiKey: undefined,
clientID: undefined,
clientSecret: undefined
},
diff --git a/lib/config/environment.js b/lib/config/environment.js
index 3dde4786..8e1e5171 100644
--- a/lib/config/environment.js
+++ b/lib/config/environment.js
@@ -74,6 +74,7 @@ module.exports = {
appKey: process.env.HMD_DROPBOX_APPKEY
},
google: {
+ apiKey: process.env.HMD_GOOGLE_APIKEY,
clientID: process.env.HMD_GOOGLE_CLIENTID,
clientSecret: process.env.HMD_GOOGLE_CLIENTSECRET
},