https://github.com/arocks/heroku-example
Example of a Django project ready for deploying to Heroku
https://github.com/arocks/heroku-example
Last synced: about 1 year ago
JSON representation
Example of a Django project ready for deploying to Heroku
- Host: GitHub
- URL: https://github.com/arocks/heroku-example
- Owner: arocks
- License: other
- Created: 2019-02-04T13:41:21.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-04T13:42:11.000Z (over 7 years ago)
- Last Synced: 2025-02-08T12:16:26.958Z (over 1 year ago)
- Language: Python
- Size: 8.79 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Heroku Deployment Example
A minimal Django project which shows a page with current date and time.
Check out:
* Explainer video: https://youtu.be/hu99aiU0tIA
## Setup
Use the pipenv tool
``` shellsession
$ pip install pipenv
$ cd
$ pipenv install
```
Now you need to enter the pipenv shell to run the examples:
``` shellsession
$ pipenv shell
$ python manage.py migrate
$ python manage.py createsuperuser
$ python manage.py runserver
```
Next follow the video to understand the code and deploy.