profileShare

rasmusjy / voicetask

Read-only snapshot

No repository description.

main default branch 105 files Expires Sep 13, 2026, 9:06 AM

Commit

Add .env.example

commit f6e8220

1 changed file with +18 and −0

added .env.example +18 −0
@@ -0,0 +1,18 @@
1 +# Copy to .env (or set in your shell) and fill in the keys you need.
2 +# With MOCK_PROVIDERS=1 no keys are required at all.
3 +
4 +# 1 = deterministic offline mocks for STT and LLM (used by tests and CI)
5 +MOCK_PROVIDERS=
6 +
7 +# Interview + spec generation (Anthropic)
8 +ANTHROPIC_API_KEY=
9 +# Optional. Default: claude-opus-4-8. Cheaper alternative: claude-sonnet-4-6
10 +ANTHROPIC_MODEL=
11 +
12 +# Speech-to-text (OpenAI)
13 +OPENAI_API_KEY=
14 +# Optional. Default: gpt-4o-mini-transcribe. Alternatives: gpt-4o-transcribe, whisper-1
15 +STT_MODEL=
16 +
17 +# Optional. Server port, default 3001 (Vite dev proxy expects 3001)
18 +PORT=