mirror of
https://github.com/Crocmagnon/cookiecutter-django.git
synced 2024-11-05 06:23:54 +01:00
14 lines
363 B
Markdown
14 lines
363 B
Markdown
# {{cookiecutter.project_slug}}
|
|
|
|
## Quick start
|
|
Clone, then
|
|
```shell
|
|
pyenv virtualenv {{cookiecutter.python_version}} {{cookiecutter.project_slug}}
|
|
pyenv local {{cookiecutter.project_slug}}
|
|
pip install pip-tools
|
|
pip-sync requirements.txt requirements-dev.txt
|
|
pre-commit install --install-hooks
|
|
inv test
|
|
./src/manage.py migrate
|
|
./src/manage.py createsuperuser
|
|
```
|