-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp.json
34 lines (34 loc) · 880 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
{
"name": "HOFFNUNG 3000",
"description": "Platform for decentralized, anonymized, self-curated festivals",
"repository": "https://github.com/adzialocha/hoffnung3000",
"website": "https://hoffnung3000.de/",
"addons": [
"heroku-postgresql:hobby-dev"
],
"env": {
"JWT_SECRET": {
"description": "This gets automatically generated",
"generator": "secret"
},
"DATABASE_DIALECT": {
"description": "Defines the type of database (PostgreSQL) we want to use",
"value": "postgres"
},
"NPM_CONFIG_PRODUCTION": {
"description": "Has to be disabled to successfully build the app",
"value": "false"
}
},
"scripts": {
"postdeploy": "npm run db:migrate && npm run db:seed"
},
"success_url": "/",
"keywords": [
"decentralization",
"festival",
"self-curation",
"platform",
"node"
]
}