Skip to content

Commit

Permalink
pipenv instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
gtalarico committed Aug 10, 2018
1 parent 08734d3 commit a55e1c3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ $ cd django-vue
Setup
```
$ yarn install
$ pipenv install
$ pipenv install --dev & pipenv shell
$ python manage.py migrate
```

Expand Down Expand Up @@ -97,13 +97,13 @@ $ heroku config:set DJANGO_SETTINGS_MODULE=project.settings.prod
$ git push heroku
```

Heroku's nodejs buidlpack will handle install for all the dependencies from the `packages.json` file.
It will then trigger the `postinstall` command which calls `yarn build`.
This will create the bundled `dist` folder which will be served by whitenoise.
Heroku's nodejs buidlpack will handle install for all the dependencies from the `packages.json` file.
It will then trigger the `postinstall` command which calls `yarn build`.
This will create the bundled `dist` folder which will be served by whitenoise.

The python buildpack will detect the `pipfile` and install all the python dependencies.
The python buildpack will detect the `pipfile` and install all the python dependencies.

The `Procfile` will run Django migrations and then launch Django'S app using gunicorn, as recommended by heroku.
The `Procfile` will run Django migrations and then launch Django'S app using gunicorn, as recommended by heroku.

## Static Assets

Expand Down

0 comments on commit a55e1c3

Please sign in to comment.