-
Notifications
You must be signed in to change notification settings - Fork 56
/
app.json
40 lines (40 loc) · 1.36 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "HackAssistant Registration",
"description": "Hackathon registration server",
"env": {
"DOMAIN": {
"description": "Custom domain where app will be running (ignore if deploying using Heroku default domain)",
"required": false
},
"SECRET": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"SG_KEY": {
"description": "Sendgrid Key. Get it here: https://app.sendgrid.com/settings/api_keys"
},
"DROPBOX_OAUTH2_TOKEN": {
"description": "DropBox Oauth2 token. Get it here: https://blogs.dropbox.com/developers/2014/05/generate-an-access-token-for-your-own-account/",
"required": false
},
"SL_TOKEN": {
"description": "Slack token to invite hackers automatically on confirmation. https://api.slack.com/custom-integrations/legacy-tokens",
"required": false
},
"SL_TEAM": {
"description": "Slack team name (xxx on xxx.slack.com)",
"required": false
},
"PROD_MODE": {
"description": "Disables Django debug mode.",
"value":"true"
},
"MLH_CLIENT_SECRET": {
"description": "Enables MyMLH as a sign up option. Format for credentials needs to follow `CLIENT_ID@SECRET` from your MyMLH app.",
"required": false
}
},
"scripts": {
"postdeploy": "python manage.py migrate"
}
}