This repo contains:
backend/Flask + SQLite (local SQL) + OpenAI (ontology-backed generation + save)frontend/React + Vite (generate -> review/edit -> save)
cd backend
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt # I think there is some finnicky stuff you might need to upgrade openai or smth
cp .env.example .env
# Edit .env and set OPENAI_API_KEY (SQLite DB path is set by DATABASE_URL)
python app.pyshould just be
npm install
npm run devOpen: http://localhost:5173