mirror of
https://github.com/status-im/codimd.git
synced 2025-02-04 09:34:27 +00:00
Add environment variables definition for Heroku deploy.
Signed-off-by: YusukeIwaki <iwaki+git@i3-systems.com>
This commit is contained in:
parent
d5dd27f745
commit
83fe0815d5
8
app.json
8
app.json
@ -80,6 +80,14 @@
|
||||
"description": "GitHub API client secret",
|
||||
"required": false
|
||||
},
|
||||
"HMD_BITBUCKET_CLIENTID": {
|
||||
"description": "Bitbucket API client id",
|
||||
"required": false
|
||||
},
|
||||
"HMD_BITBUCKET_CLIENTSECRET": {
|
||||
"description": "Bitbucket API client secret",
|
||||
"required": false
|
||||
},
|
||||
"HMD_GITLAB_BASEURL": {
|
||||
"description": "GitLab authentication endpoint, set to use other endpoint than GitLab.com (optional)",
|
||||
"required": false
|
||||
|
@ -62,6 +62,10 @@ module.exports = {
|
||||
clientID: process.env.HMD_GITHUB_CLIENTID,
|
||||
clientSecret: process.env.HMD_GITHUB_CLIENTSECRET
|
||||
},
|
||||
bitbucket: {
|
||||
clientID: process.env.HMD_BITBUCKET_CLIENTID,
|
||||
clientSecret: process.env.HMD_BITBUCKET_CLIENTSECRET
|
||||
},
|
||||
gitlab: {
|
||||
baseURL: process.env.HMD_GITLAB_BASEURL,
|
||||
clientID: process.env.HMD_GITLAB_CLIENTID,
|
||||
|
Loading…
x
Reference in New Issue
Block a user