aboutsummaryrefslogtreecommitdiff
path: root/app.json
blob: 5ff2769617d95cbdccae5bee9ba7c183dcf5cb75 (plain)
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
{
  "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.png",
  "keywords": [
    "saleor",
    "e-commerce",
    "django"
  ],
  "image": "heroku/python",
  "env": {
    "DJANGO_SETTINGS_MODULE": "saleor.settings",
    "DEBUG": "False",
    "ALLOWED_HOSTS": {
      "description": "Comma-separated list of hosts",
      "value": ".herokuapp.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
    }
  },
  "scripts": {
    "postdeploy": "python manage.py migrate && python manage.py populatedb --createsuperuser --withoutimages"
  },
  "addons": [
    "heroku-postgresql:hobby-dev",
    "heroku-redis:hobby-dev"
  ],
  "buildpacks": [
    {
      "url": "https://github.com/heroku/heroku-buildpack-nodejs.git"
    },
    {
      "url": "https://github.com/heroku/heroku-buildpack-python.git"
    }
  ],
  "success_url": "/"
}