Getting Started

Use this checklist to run the project locally for development.

Prerequisites

  • Node.js 20+
  • Python 3.10+
  • A running Postgres database for backend development

Frontend

cd frontend
npm ci
npm run dev

Backend

cd backend
pip install -r requirements.txt
uvicorn app.main:app --reload --port 8000