forked from dribdat/dribdat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
41 lines (41 loc) · 1.06 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
{
"name": "dribdat",
"logo": "https://raw.githubusercontent.com/hackathons-ftw/dribdat/main/dribdat/static/img/badge-black.png",
"description": "Open source platform for collaborative events",
"keywords": [
"teambuilding",
"hackathon",
"collaboration"
],
"website": "https://dribdat.cc",
"repository": "https://github.com/dribdat/dribdat",
"success_url": "/admin",
"scripts": {
},
"buildpacks": [
{ "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"
}
]
}