-
Notifications
You must be signed in to change notification settings - Fork 28
/
app.json
42 lines (41 loc) · 897 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
34
35
36
37
38
39
40
41
42
{
"name": "competitions-v2",
"scripts": {
"postdeploy": "bin/init_staging"
},
"env": {
"USE_SSL": "True",
"GUNICORN_CMD_ARGS": "--workers=3",
"DJANGO_SETTINGS_MODULE": "settings.develop",
"TEMP_SUBMISSION_STORAGE": "./temp_submission_storage/",
"AWS_ACCESS_KEY_ID": {"required": true},
"AWS_SECRET_ACCESS_KEY": {"required": true},
"AWS_S3_ENDPOINT_URL": {"required": true},
"AWS_STORAGE_BUCKET_NAME": {"required": true},
"AWS_STORAGE_PRIVATE_BUCKET_NAME": {"required": true}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
},
"worker": {
"quantity": 1,
"size": "free"
}
},
"addons": [
"heroku-postgresql",
"heroku-redis",
"searchbox:starter",
"cloudamqp:lemur"
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
}
]
}