# Procfile for local development
# Use with: npm install -g node-foreman
# Then run: nf start

backend: cd backend && source .venv/bin/activate && python main.py
frontend: cd frontend && npm run dev
