Just a simple boilerplate to create new projects for general purposes.
Create virtual environment
uv venvGenerate uv.lock
uv lock -v -UActive environment
source .venv/bin/activateInstall main dependencies for production
uv sync --frozenInstall main + dev dependencies
uv sync --group tools --group linting --group testingNote: In order to prevent conflicts in the production environment, it is important to utilize fixed versions of the main dependencies. If there are any packages that require updating, we will handle the process manually.