forked from phildini/logtacts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
68 lines (68 loc) · 1.46 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
{
"name": "ContactOtter",
"website": "https://www.contactotter.com",
"repository": "https://github.com/phildini/logtacts/",
"scripts": {
"postdeploy": "python manage.py migrate --settings=logtacts.prod_settings"
},
"env": {
"BONSAI_URL": {
"required": true
},
"DATABASE_URL": {
"required": true
},
"EMAIL_PASSWORD": {
"required": true
},
"LOGTACTS_SECRET_KEY": {
"required": true
},
"RECAPTCHA_PRIVATE_KEY": {
"required": true
},
"RECAPTCHA_PUBLIC_KEY": {
"required": true
},
"OPBEAT_APP_ID": {
"required": true
},
"OPBEAT_ORG_ID": {
"required": true
},
"OPBEAT_SECRET_KEY": {
"required": true
},
"SEARCH_INDEX": {
"required": true
},
"SLACK_WEBHOOK_URL": {
"required": true
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "hobby"
},
"web": {
"quantity": 1,
"size": "hobby"
},
"webworker": {
"quantity": 1,
"size": "hobby"
}
},
"addons": [
"heroku-redis",
{
"plan": "papertrail:choklad"
}
],
"buildpacks": [
{
"url": "heroku/python"
}
]
}