18 lines
235 B
Markdown
18 lines
235 B
Markdown
# Contributing
|
|
|
|
## Windows development
|
|
|
|
```bash
|
|
wsl --install
|
|
sudo apt update && sudo apt upgrade
|
|
```
|
|
|
|
## Commands
|
|
|
|
```bash
|
|
uv sync
|
|
uv run python manage.py check
|
|
uv run pytest -n 5 -q
|
|
uv run ruff check . --fix
|
|
uv run ruff format .
|
|
```
|