-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
57 lines (57 loc) · 1.74 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
{
"name": "spirit-heroku",
"description": "Spirit forum",
"repository": "https://github.com/nitely/spirit-heroku",
"keywords": ["spirit", "django"],
"env": {
"SECRET_KEY": {
"description": "This is used to provide cryptographic signing, used for sessions, cookies and password reset tokens.",
"generator": "secret"
},
"ALLOWED_HOSTS": {
"description": "A list of comma-separated host/domain names that this Django site can serve.",
"value": "*"
},
"DEFAULT_LANGUAGE_CODE": "en",
"ADMIN_USERNAME": {
"description": "Username to login the forum as an admin, this can be changed later.",
"value": "admin"
},
"ADMIN_PASSWORD": {
"description": "Password to login the forum as an admin, this can be changed later.",
"value": "1234"
},
"ADMIN_EMAIL": {
"description": "Error notifications will be sent to this email.",
"value": "[email protected]"
},
"EMAIL_HOST": {
"description": "The host to use for sending email.",
"value": "",
"required": false
},
"EMAIL_PORT": "587",
"EMAIL_HOST_USER": {
"description": "Username to use for the SMTP server defined in EMAIL_HOST.",
"value": "",
"required": false
},
"EMAIL_HOST_PASSWORD": {
"description": "Password to use for the SMTP server defined in EMAIL_HOST.",
"value": "",
"required": false
},
"DEFAULT_FROM_EMAIL": {
"description": "Default email address to use for various automated correspondence from the site manager(s).",
"value": "[email protected]"
}
},
"scripts": {
"dokku": {
"postdeploy": "chmod +x postdeploy.sh && ./postdeploy.sh"
}
},
"addons": [
"heroku-postgresql:hobby-dev"
]
}