-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
72 lines (72 loc) · 2.32 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
71
72
{
"name": "Django Opt-out demo",
"description": "Allow everybody to unsubscribe your messages, user accounts are not required.",
"keywords": [
"Python",
"Django"
],
"website": "https://github.com/wooyek/django-opt-out",
"repository": "https://github.com/wooyek/django-opt-out",
"addons": [
"heroku-postgresql:hobby-dev"
],
"env": {
"AUTO_MIGRATE": {
"description": "Allows to run migrate on every deploy or a release.",
"value": "True"
},
"CREATE_SUPER_USER": {
"description": "This will auto create a super user if no users are present. This won't work if auto migrations is off",
"value": "admin:[email protected]:P@$Sw0rd",
"required": false
},
"SECRET_KEY": {
"description": "A secret key for a particular Django installation. This is used to provide cryptographic signing.",
"generator": "secret"
},
"DEBUG": {
"description": "Leave DEBUG on for demo purposes. Set it to False to secure your app from the first start.",
"value": "True"
},
"ALLOWED_HOSTS": {
"description": "Domain names this is working under, first one will be used as a base for emails used in settings",
"value": "opt-out.example.com .herokuapp.com"
},
"EMAIL_URL": {
"description": "SMTP setting in the form of smtp+tls://user:[email protected]:587",
"value": "",
"required": false
},
"UPGRADE_REQUIREMENTS": {
"description": "We need to workaround some heroku limitations and install example_project requirements",
"value": "True"
},
"DISABLE_COLLECTSTATIC": {
"description": "Controls if Heroku should collect any static files. This won't work with example_project.",
"value": "1"
},
"APP_COLLECTSTATIC": {
"description": "Make example project collect statics on it'sown.",
"value": "1",
"required": false
},
"DJANGO_SETTINGS_MODULE": {
"description": "Point to an settings module in example_project",
"value": "website.settings.production"
},
"SPARKPOST_API_KEY": {
"description": "Provide this key if you want to test SparkPost integration.",
"value": "",
"required": false
}
},
"scripts": {
"postdeploy": "bin/post_deploy"
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
}
}