# Necrus Workbench v8 — local development environment
# Copy to .env and fill in your real keys.

# ─── REQUIRED ─────────────────────────────────────────────────────────────────

# Anthropic API key (server-side ONLY)
ANTHROPIC_API_KEY=sk-ant-replace-with-your-key

# JWT signing secret — generate: openssl rand -base64 32
SESSION_SECRET=dev-secret-change-me-in-production-use-32-bytes

# ─── OPTIONAL PROVIDERS ───────────────────────────────────────────────────────

# OPENAI_API_KEY=sk-...
# GOOGLE_API_KEY=AIza...
# DEEPSEEK_API_KEY=sk-...
# MISTRAL_API_KEY=...

# ─── FRONTEND ─────────────────────────────────────────────────────────────────

# Leave empty in dev — Vite proxies /v1 and /auth to localhost:8787 automatically.
# Set to the deployed worker URL for production builds.
VITE_PROXY_URL=

# App URL (used for CORS)
VITE_APP_URL=http://localhost:5173
