Skip to content
This repository has been archived by the owner on Apr 24, 2018. It is now read-only.
/ flango Public archive

A Django template for using Flask for the frontend, Django for the backend.

Notifications You must be signed in to change notification settings

not-kennethreitz/flango

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flango Starter Template

An utterly fantastic project starter template for Django 2.0, using Flask as a frontend.

How it works

  • frontend.py contains your Flask application, which is used for your frontend.
  • The django application is routed to /admin.

Features

  • Flask for the frontend, using the Django ORM.
  • 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 and Flask ($ pipenv install --no-hashes)
  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/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.

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

License: MIT

Further Reading

About

A Django template for using Flask for the frontend, Django for the backend.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages