| 1234567891011121314151617181920 | #!/bin/bashset -x# python style checks rely on `ruff` in pathif ! command -v ruff &> /dev/null; then    echo "Installing Ruff ..."    pip install rufffi# run ruff linterruff check --fix ./api# env files linting relies on `dotenv-linter` in pathif ! command -v dotenv-linter &> /dev/null; then    echo "Installing dotenv-linter ..."    pip install dotenv-linterfidotenv-linter ./api/.env.example ./web/.env.example
 |