From the command line
uv run python -m app
Lint files in the current directory
uv run ruff check
Lint files in the current directory and fix any fixable errors
uv run ruff check --fix
Format all files in the current directory
uv run ruff format
uv run alembic init -t async alembic
uv run alembic revision --autogenerate -m "Init"
uv run alembic upgrade head