A Django template for using Flask for the frontend, Django for the backend.
An utterly fantastic project starter template for Django 2.0, using Flask as a frontend.
frontend.py
contains your Flask application, which is used for your frontend./admin
.To use this project, follow these steps:
$ pipenv install --no-hashes
)Using this template to create a new Django app is easy::
$ django-admin.py startproject --template=https://github.com/kennethreitz/flango/archive/master.zip --name=Procfile --name=Pipfile helloworld
(If this doesn't work on windows, replace django-admin.py
with django-admin
)
You can replace helloworld
with your desired project name.
$ git init
$ git add -A
$ git commit -m "Initial commit"
$ heroku create
$ git push heroku master
$ heroku run python manage.py migrate