Config & Env Vars
Setup
bashCopyEditcp .env.example .envCommon Environment Variables
envCopyEdit# API Keys
OPENAI_API_KEY=sk-...
# Database
DATABASE_URL=postgres://user:pass@host:5432/db
# Optional Features
ENABLE_AUTH=true
LOG_LEVEL=debug
# Server Settings
PORT=3001
FRONTEND_URL=http://localhost:3000Backend Access
Frontend Access
Last updated