-
Notifications
You must be signed in to change notification settings - Fork 15
/
app.json
40 lines (40 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
{
"name": "Programming Club UIET",
"description": "This is the official PClub Webapp.",
"repository": "https://github.com/pclubuiet/website2",
"success_url": "/home/",
"env": {
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"WEB_CONCURRENCY": {
"description": "The number of processes to run.",
"value": "1"
},
"NODE_ENV": {
"description": "The node env type to run.",
"value": "production"
},
"DJANGO_SETTINGS_MODULE": {
"description": "The django settings module to use.",
"value": "website2.production_settings"
}
},
"formation": {
"web": {
"quantity": 1
}
},
"addons": [
"heroku-postgresql"
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
}
]
}