Skip to content

Latest commit

 

History

History
58 lines (34 loc) · 1.24 KB

deploy.rst

File metadata and controls

58 lines (34 loc) · 1.24 KB

Deployment

Docker

You will need to install Docker first.

Before building the image make sure you have all of the front-end assets prepared for production:

$ npm run build-assets
$ python manage.py collectstatic

Then use Docker to build the image:

$ docker build -t mystorefront .

Heroku

First steps

$ heroku create --buildpack https://github.com/heroku/heroku-buildpack-nodejs.git
$ heroku buildpacks:add https://github.com/heroku/heroku-buildpack-python.git
$ heroku addons:create heroku-postgresql
$ heroku addons:create heroku-redis
$ heroku config:set SECRET_KEY='<your secret key here>'
$ heroku config:set ALLOWED_HOSTS='<your hosts here>'

Note

Heroku's storage is volatile. This means that all instances of your application will have separate disks and will lose all changes made to the local disk each time the application is restarted. The best approach is to use cloud storage such as Amazon S3. See :ref:`amazon_s3` for configuration details.

Deploy

$ git push heroku master

Prepare the database

$ heroku run python manage.py migrate