Marco Zeisler ff4b3508d8 move template to ./template;
setup django middleware;
setup angular frontend;
wire django and angular together;
2020-11-17 19:34:25 +01:00

56 lines
1.6 KiB
Markdown

# Heroku Django Starter Template
An utterly fantastic project starter template for Django 2.0.
## 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 (`$ pipenv 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.
## 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/)
# ERROR handling
<em>Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools"</em>
<br>Install missing deps https://visualstudio.microsoft.com/visual-cpp-build-tools/