To get started, rename all instances of project_name
in the codebase to the name of your project.
To set up your development environment, use the provided Docker Compose config in the base directory.
-
Run
docker compose up
to start the Flask app in a Docker container. -
To set up pre-commit hooks, ensure that
pre-commit
is installed. You can install it using:pip install pre-commit
-
To install the hooks defined in
.pre-commit-config.yml
, run:pre-commit install
This ensures that code is properly formatted and passes linting checks before commits are made.