To get started, rename all instances of project_name in the codebase to the name of your project, and delete this line.
To set up your development environment, use the provided Docker Compose config in the base directory.
-
Duplicate the
.env.examplefile and name the new file.env. -
Run
docker compose upto start the Flask app in a Docker container. -
To set up pre-commit hooks, ensure that
pre-commitis 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.