Django boilerplate to start new projects. Based on 7ws logfreak project.
- Python +3.5
- Django 1.1x
- bower
Inside the directory your project will live, run the following command:
$ django-admin startproject project_name --template=https://github.com/dunderlabs/django-boilerplate/archive/master.zip
After that the following command will update requirements/*.txt with latest packages from requirements/*.in:
$ make pip-compile
The next command will install requirements for a local development environment:
$ make install-dev-requirements
After all, just install the frontend dependencies with:
$ make setup-frontend