Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 772 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 772 Bytes

Django boilerplate

Django boilerplate to start new projects. Based on 7ws logfreak project.

Requirements

  • Python +3.5
  • Django 1.1x
  • bower

How to use

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