make py-setup
make py-install-dependencies
poetry shell
This project uses pre-commit git hook to automatically format and lint the code. Commited code must have zero linting issues.
make test
Local run reads configuration from config.env
make run
make docker-build-local
make docker-run
Each PR must:
- Have a meaningful title
- Be specific - add a single feature, fix a single bug
- Have properly formatted code (use
make py-code-format
) - Have zero linter errors/warnings (use
make py-check-code
) - Have proper test coverage (tbd)