forked from saleor/saleor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
59 lines (59 loc) · 1.59 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
{
"name": "saleor",
"description": "An e-commerce storefront for Python and Django",
"repository": "https://github.com/mirumee/saleor",
"website": "http://getsaleor.com/",
"logo": "https://mirumee.com/img/opensource_saleor.jpg",
"keywords": [
"saleor",
"e-commerce",
"django"
],
"image": "heroku/python",
"env": {
"DJANGO_SETTINGS_MODULE": "saleor.settings",
"DEBUG": "True",
"NPM_CONFIG_PRODUCTION": "false",
"ALLOWED_HOSTS": {
"description": "Comma-separated list of hosts",
"value": ".herokuapp.com"
},
"DEFAULT_FROM_EMAIL": "noreply@example.com",
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"AWS_MEDIA_BUCKET_NAME": {
"description": "If you intend to upload your own product images, we strongly recommend configure S3.",
"value": "",
"required": false
},
"AWS_ACCESS_KEY_ID": {
"description": "",
"value": "",
"required": false
},
"AWS_SECRET_ACCESS_KEY": {
"description": "",
"value": "",
"required": false
},
"ENABLE_ACCOUNT_CONFIRMATION_BY_EMAIL": "False"
},
"scripts": {
"postdeploy": "python manage.py migrate && python manage.py populatedb --createsuperuser --withoutimages"
},
"addons": [
"heroku-postgresql:hobby-dev",
"heroku-redis:hobby-dev",
"cloudamqp:lemur",
"sendgrid:starter",
"scheduler:standard"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python.git"
}
],
"success_url": "/"
}