This repository has been archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
56 lines (56 loc) · 1.98 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
{
"name": "Refugeedata",
"description": "A refugee data tracking system",
"repository": "https://github.com/ukch/refugeedata",
"website": "http://joelcross.co.uk/refugeedata",
"addons": [
"heroku-postgresql:hobby-dev",
"mailgun:starter",
"scheduler:standard"
],
"success_url": "/admin",
"env": {
"EMAIL_FROM_ADDRESS": {
"description": "Default address to send emails from"
},
"AWS_ACCESS_KEY_ID": {
"description": "Amazon Web Services access key ID, for storage of uploaded files."
},
"AWS_SECRET_ACCESS_KEY": {
"description": "Amazon Web Services secret key, for storage of uploaded files."
},
"AWS_STORAGE_BUCKET_NAME": {
"description": "Amazon Web Services bucket name, for storage of uploaded files."
},
"RAVEN_DSN": {
"description": "If you are using Sentry for error logging, you must set the Raven DSN here. If not, you may safely leave this blank.",
"required": false
},
"TWILIO_SID": {
"description": "If you are using Twilio for sending SMS messages, you must set the SID here.",
"required": false
},
"TWILIO_AUTHTOKEN": {
"description": "If you are using Twilio for sending SMS messages, you must set the authentication token here.",
"required": false
},
"TWILIO_FROMSMS": {
"description": "If you are using Twilio for sending SMS messages, you must set the from address here.",
"required": false
},
"SECRET_KEY": {
"description": "A secret key for a particular Django installation. This is used to provide cryptographic signing, and should be set to a unique, unpredictable value.",
"generator": "secret"
},
"TIME_ZONE": {
"description": "Your current time-zone in Continent/City format (eg. Europe/London). If unsure enter 'UTC'.",
"value": "Europe/Istanbul"
}
},
"buildpacks": [{
"url": "heroku/nodejs"
}, {
"url": "heroku/python"
}],
"stack": "heroku-18"
}