charasheet/README.md

16 lines
319 B
Markdown
Raw Normal View History

2022-10-28 22:16:23 +02:00
# charasheet
## Quick start
2022-11-02 12:52:11 +01:00
Clone, then
2022-10-28 22:16:23 +02:00
```shell
2022-12-10 01:38:11 +01:00
pyenv virtualenv 3.11.1 charasheet
2022-11-02 12:52:11 +01:00
pyenv local charasheet
2022-12-10 01:00:10 +01:00
pip install pip-tools
pip-sync requirements.txt requirements-dev.txt
2022-11-02 12:52:11 +01:00
pre-commit install --install-hooks
2022-10-28 22:16:23 +02:00
inv test
2022-11-02 12:52:11 +01:00
./src/manage.py migrate
./src/manage.py loaddata initial_data
./src/manage.py createsuperuser
2022-10-28 22:16:23 +02:00
```