use flake
dotenv_if_exists
if [ ! -f pyproject.toml ]; then
    echo "Initializing dir with uv"
    uv init
fi
if [ ! -d .venv ]; then
    uv sync --frozen 
fi
