- Docker / Docker-compose
- Python 3.9
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
Run postgresql and redis:
make docker-compose-up
Run django development server:
make dev
Run tests:
make test
- Explain what this boilerplate includes
- Documentation of how to setup the production environment