forked from labhackercd/new-wikilegis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
63 lines (63 loc) · 1.05 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"addons": [
"heroku-postgresql"
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
},
{
"url": "https://github.com/grauwoelfchen/heroku-buildpack-gettext.git"
},
{
"url": "https://github.com/labhackercd/new-wikilegis.git"
}
],
"env": {
"DATABASE_ENGINE": {
"required": true
},
"DATABASE_HOST": {
"required": true
},
"DATABASE_NAME": {
"required": true
},
"DATABASE_PASSWORD": {
"required": true
},
"DATABASE_PORT": {
"required": true
},
"DATABASE_USER": {
"required": true
},
"EMAIL_BACKEND": {
"required": true
},
"EMAIL_HOST": {
"required": true
},
"EMAIL_HOST_PASSWORD": {
"required": true
},
"EMAIL_HOST_USER": {
"required": true
},
"EMAIL_PORT": {
"required": true
},
"EMAIL_USE_TLS": {
"required": true
}
},
"formation": {
},
"name": "new-wikilegis",
"scripts": {
},
"stack": "heroku-18"
}