-
Install Poetry if you haven't already:
pip install poetry
-
Install the project dependencies:
poetry install --no-root
-
Run the application:
poetry run python app.py
This project uses pre-commit to enforce coding standards and run checks before committing code. To install pre-commit hooks:
pre-commit install
After this, every time you make a commit, the hooks will run automatically to ensure code quality.