- Install uv
curl -Ls https://astral.sh/uv/install.sh | bash - Install dependencies
uv sync --frozen --no-cache
- Make messages for translation
python manage.py makemessages -l en
- Compile the messages after adding translations to the
.pofiles for them:python manage.py compilemessages
- To format the entire project
ruff format . - To check the entire project for code style compliance
ruff check . --fix