-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
85 lines (85 loc) · 2.37 KB
/
Copy pathapp.json
File metadata and controls
85 lines (85 loc) · 2.37 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "public_comment",
"env": {
"ALLOWED_HOSTS": {
"description": "The server names that are allowed to connect to this app.",
"value": ".herokuapp.com"
},
"AWS_ACCESS_KEY_ID": {
"description": "AWS access key."
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS secret access key."
},
"AWS_STORAGE_BUCKET_NAME": {
"description": "AWS S3 bucket where uploaded files are stored."
},
"DEFAULT_FROM_EMAIL": {
"description": "Email address used as the from address on emails sent from the app.",
"value": "webmaster@localhost"
},
"DJANGO_DEBUG": {
"description": "Set to True to enable debugging. This should not be True for a production app.",
"value": "False"
},
"DJANGO_SETTINGS_MODULE": {
"description": "The Django settings file to use.",
"value": "public_comment.settings.production"
},
"EMAIL_HOST": {
"description": "SMTP settings, see Django documentation",
"value": "smtp.sendgrid.net"
},
"EMAIL_HOST_PASSWORD": {
"description": "SMTP settings, see Django documentation"
},
"EMAIL_HOST_USER": {
"description": "SMTP settings, see Django documentation",
"value": "apikey"
},
"EMAIL_PORT": {
"description": "SMTP settings, see Django documentation",
"value": "587"
},
"EMAIL_USE_SSL": {
"description": "SMTP settings, see Django documentation",
"value": "False"
},
"EMAIL_USE_TLS": {
"description": "SMTP settings, see Django documentation",
"value": "True"
},
"NEW_RELIC_APP_NAME": {
"description": "App name to use for identifying the app in Newrelic. Has no effect if NEW_RELIC_LICENSE_KEY is not set.",
"value": "Public Commenter"
},
"NEW_RELIC_ENVIRONMENT": {
"description": "The environment to use from the newrelic.ini config. Has no effect if NEW_RELIC_LICENSE_KEY is not set.",
"value": "production"
},
"SECRET_KEY": {
"description": "Deployment-specific secret key. Should be random.",
"generator": "secret"
}
},
"formation": {
"web": {
"quantity": 1
},
"celery": {
"quantity": 1
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
},
{
"plan": "memcachedcloud:30"
},
{
"plan": "rediscloud:30"
}
],
"stack": "container"
}