Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beomi/heroku-helloworld
Test DRF Project for Heroku Deploy
https://github.com/beomi/heroku-helloworld
django heroku
Last synced: 15 days ago
JSON representation
Test DRF Project for Heroku Deploy
- Host: GitHub
- URL: https://github.com/beomi/heroku-helloworld
- Owner: Beomi
- Created: 2017-11-19T13:58:12.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T23:48:55.000Z (about 2 years ago)
- Last Synced: 2024-12-22T11:46:00.233Z (about 1 month ago)
- Topics: django, heroku
- Language: Python
- Homepage: https://arcane-forest-13312.herokuapp.com
- Size: 19.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Heroku Django Starter Template
An utterly fantastic project starter template for Django 1.11.
## Features
- Production-ready configuration for Static Files, Database Settings, Gunicorn, etc.
- Enhancements to Django's static file serving functionality via WhiteNoise.
- Latest Python 3.6 runtime environment.## How to Use
To use this project, follow these steps:
1. Create your working environment.
2. Install Django (`$ pip install django`)
3. Create a new project using this template## Creating Your Project
Using this template to create a new Django app is easy::
$ django-admin.py startproject --template=https://github.com/heroku/heroku-django-template/archive/master.zip --name=Procfile helloworld
(If this doesn't work on windows, replace `django-admin.py` with `django-admin`)
You can replace ``helloworld`` with your desired project name.
## Deployment to Heroku
$ git init
$ git add -A
$ git commit -m "Initial commit"$ heroku create
$ git push heroku master$ heroku run python manage.py migrate
See also, a [ready-made application](https://github.com/heroku/python-getting-started), ready to deploy.
## Using Python 2.7?
Just update `runtime.txt` to `python-2.7.13` (no trailing spaces or newlines!).
## License: MIT
## Further Reading
- [Gunicorn](https://warehouse.python.org/project/gunicorn/)
- [WhiteNoise](https://warehouse.python.org/project/whitenoise/)
- [dj-database-url](https://warehouse.python.org/project/dj-database-url/)