.env.example
971 bytes
| 1 | # You do not need this file to start. Run "npm run dev" and the first screen in the |
|---|---|
| 2 | # browser asks for your keys or offers the offline demo, then writes .env for you. |
| 3 | # "npm run setup" asks the same questions in the terminal. |
| 4 | # "npm run demo" always uses offline mocks and overrides this file for that run. |
| 5 | # To configure manually, copy this file to .env and replace the key placeholders. |
| 6 | |
| 7 | # 1 = deterministic offline mocks for STT and LLM (used by tests and CI) |
| 8 | MOCK_PROVIDERS= |
| 9 | |
| 10 | # Interview + spec generation (Anthropic). Get a key at console.anthropic.com |
| 11 | ANTHROPIC_API_KEY=@insert-anthropic-api-key@ |
| 12 | # Optional. Default: claude-opus-4-8. Cheaper alternative: claude-sonnet-4-6 |
| 13 | ANTHROPIC_MODEL= |
| 14 | |
| 15 | # Speech-to-text (OpenAI). Get a key at platform.openai.com |
| 16 | OPENAI_API_KEY=@insert-openai-api-key@ |
| 17 | # Optional. Default: gpt-4o-mini-transcribe. Alternatives: gpt-4o-transcribe, whisper-1 |
| 18 | STT_MODEL= |
| 19 | |
| 20 | # Optional. Server port, default 3001 (Vite dev proxy expects 3001) |
| 21 | PORT= |
| 22 | |