cookiecutter-django/{{cookiecutter.project_slug}}/README.md

15 lines
363 B
Markdown
Raw Normal View History

2022-10-28 19:38:57 +02:00
# {{cookiecutter.project_slug}}
## Quick start
2022-12-16 22:11:56 +01:00
Clone, then
2022-10-28 19:38:57 +02:00
```shell
2022-12-16 22:11:56 +01:00
pyenv virtualenv {{cookiecutter.python_version}} {{cookiecutter.project_slug}}
pyenv local {{cookiecutter.project_slug}}
pip install pip-tools
pip-sync requirements.txt requirements-dev.txt
2022-10-28 19:38:57 +02:00
pre-commit install --install-hooks
inv test
2022-12-16 22:11:56 +01:00
./src/manage.py migrate
./src/manage.py createsuperuser
2022-10-28 19:38:57 +02:00
```