use flake

# Load environment variables from .env if it exists
if [ -f .env ]; then
  dotenv .env
fi

# Activate Python virtual environment
if [ -f .venv/bin/activate ]; then
  source .venv/bin/activate
fi