- copy .env.example to .env
cp app/.env.example app/.env
run with docker-compose
docker-compose -d --build
pip install pre-commit
create a sample pre-commits file
pre-commit sample-config > .pre-commit-config.yaml
edit this file to add hooks install hooks
pre-commit install --install-hooks
Links
- pre-commit: A framework for managing and maintaining multi-language pre-commit hooks.
- Github: Working with the Container registry
run
pytest
Links