forked from anishathalye/gavel
-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
33 lines (33 loc) · 828 Bytes
/
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
{
"addons": [
"heroku-postgresql:hobby-dev",
"heroku-redis:hobby-dev"
],
"formation": {
"web": {
"quantity": 1,
"size": "free"
},
"worker": {
"quantity": 1,
"size": "free"
}
},
"description": "An awesome judging system for hackathons",
"env": {
"ADMIN_PASSWORD": "change-this-before-deploying",
"SECRET_KEY": "randomly-generate-this-before-deploying",
"DISABLE_EMAIL": "true",
"BASE_URL": "https://example.com/",
"EMAIL_FROM": "_unused_",
"EMAIL_USER": "_unused_",
"EMAIL_PASSWORD": "_unused_",
"IGNORE_CONFIG_FILE": "true"
},
"keywords": [
"gavel",
"python",
"flask"
],
"name": "Gavel Judging System"
}