-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
70 lines (70 loc) · 1.26 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
64
65
66
67
68
69
70
{
"name": "NotifyTube",
"repository": "https://github.com/aurora-dot/NotifyTube",
"formation": {
"web": {
"quantity": 1,
"size": "basic"
}
},
"addons": [
{
"plan": "heroku-postgresql:mini"
},
{
"plan": "papertrail:choklad"
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs.git"
},
{
"url": "https://github.com/heroku/heroku-buildpack-chrome-for-testing"
},
{
"url": "https://github.com/moneymeets/python-poetry-buildpack.git"
},
{
"url": "heroku/python"
}
],
"env": {
"DJANGO_SUPERUSER_USERNAME": {
"required": true
},
"DJANGO_SUPERUSER_EMAIL": {
"required": true
},
"DJANGO_SUPERUSER_PASSWORD": {
"required": true
},
"SECRET_KEY": {
"required": true
},
"HEROKU": {
"required": true
},
"EMAIL_HOST": {
"required": true
},
"EMAIL_HOST_USER": {
"required": true
},
"EMAIL_HOST_PASSWORD": {
"required": true
},
"DEFAULT_FROM_EMAIL": {
"required": true
},
"SITENAME": {
"required": true
},
"EMAIL_URL_BEGINNING": {
"required": true
},
"SENTRY_DSN": {
"required": true
}
}
}