Skip to content

Local Development

tritrient-yuchen edited this page Aug 4, 2026 · 1 revision

Local Development

Status: documentation skeleton

Prerequisites

  • Node.js and npm
  • Docker and Docker Compose
  • Python 3.11+ for the AI backend

Quick start

npm install
cp .env.example .env
npm run db:setup
npm run dev

The web app runs on http://localhost:5173. The Node API runs on port 8787. The Python AI service uses port 8010 when configured locally.

Verification

npm test -- --run
npm run lint
npm run build

Planned details

  • Document environment variables.
  • Document demo seed data.
  • Document Python virtual-environment setup.
  • Document database reset and migration workflows.

Clone this wiki locally