-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
50 lines (50 loc) · 1.53 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
{
"name": "Kegbot Server",
"description": "Kegbot Server, the internet beer kegerator monitoring system.",
"website": "https://kegbot.org",
"repository": "https://github.com/szechyjs/kegbot-heroku",
"logo": "https://kegbotdotorg.s3.amazonaws.com/static/images/press/kegbot-logo.png",
"keywords": ["kegbot", "python", "django"],
"success_url": "/",
"addons": [
"newrelic:wayne",
"memcachier",
"heroku-postgresql",
"redistogo",
"postmark"
],
"env": {
"KEGBOT_SETTINGS_DIR": "/app/",
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"AWS_ACCESS_KEY_ID": {
"description": "AWS access key",
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS secret key",
"required": true
},
"AWS_STORAGE_BUCKET_NAME": {
"description": "AWS S3 bucket name",
"required": true
},
"AWS_S3_CUSTOM_DOMAIN": {
"description": "AWS S3 bucket domain",
"required": true
},
"EMAIL_FROM_ADDRESS": {
"description": "Email address to send emails from. This uses Postmark to send emails, after deployment be sure to add this email address in Postmark through the Heroku addons interface",
"required": true
},
"DEBUG_KEGBOT": {
"description": "Enable debug mode.",
"required": true
}
},
"scripts": {
"postdeploy": "kegbot syncdb --noinput -v 0 && kegbot migrate --fake --noinput -v 0 && kegbot collectstatic --noinput"
}
}