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.zipAfter that the following command will update requirements/*.txt with latest packages from requirements/*.in:
$ make pip-compileThe next command will install requirements for a local development environment:
$ make install-dev-requirementsAfter all, just install the frontend dependencies with:
$ make setup-frontend