/cookiecutter-django

Cookiecutter Django by Codevance is a template to start django projects

Primary LanguagePythonBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Cookiecutter Django by Codevance

Requirements

  • Docker / Docker-compose
  • Python 3.9

Usage

First, create an virtualenv and activate it.

Install cookiecutter and setup the project:

pip install cookiecutter
cookiecutter https://github.com/codevance/cookiecutter-django -f -o ..

Setup the first configurations:

pip install -r requirements-test.txt
cp -r env-sample .env

Commands

Run postgresql and redis:

make docker-compose-up

Run django development server:

make dev

Run tests:

make test

To Do

  • Explain what this boilerplate includes
  • Documentation of how to setup the production environment