forked from dribdat/dribdat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
46 lines (46 loc) · 1.29 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
41
42
43
44
45
46
{
"name": "dribdat",
"logo": "https://raw.githubusercontent.com/hackathons-ftw/dribdat/master/dribdat/static/img/badge-black.png",
"description": "An open source platform for data-driven team collaboration, such as Hackathons.",
"keywords": [
"teambuilding",
"hackathon",
"collaboration"
],
"website": "https://dribdat.cc",
"repository": "https://github.com/hackathons-ftw/dribdat",
"success_url": "/admin",
"scripts": {
"postdeploy": "python manage.py db init && python manage.py db migrate && python manage.py db upgrade"
},
"buildpacks": [
{ "url": "heroku/nodejs" },
{ "url": "heroku/python" }
],
"env": {
"DRIBDAT_SECRET": {
"description": "A secret key for verifying the integrity of signed cookies",
"generator": "secret"
},
"DRIBDAT_APIKEY": {
"description": "A secret key for connecting remote clients through the API",
"generator": "secret"
},
"DRIBDAT_ENV": {
"description": "'dev' to enable debugging, 'prod' to optimise assets",
"value": "prod"
},
"SERVER_URL": {
"description": "Host name of this instance",
"value": "my-dribdat-instance.herokuapp.com"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.6"
}
}
]
}