Add .env.example template (no secrets)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Showing 1 changed file with +23 and −0
added
.env.example
+23 −0
@@ -0,0 +1,23 @@ | ||
| 1 | +# WorthDoing.ai | |
| 2 | +# Author: Simon-Pierre Boucher | |
| 3 | +# Contact: contact@spboucher.ai | |
| 4 | +# File: .env.example | |
| 5 | +# Description: Template for required environment variables (no real secrets). | |
| 6 | + | |
| 7 | +# --- API keys (server-side only) --- | |
| 8 | +ANTHROPIC_API_KEY= | |
| 9 | +FIRECRAWL_API_KEY= | |
| 10 | + | |
| 11 | +# --- Database --- | |
| 12 | +DATABASE_URL= | |
| 13 | + | |
| 14 | +# --- App --- | |
| 15 | +PUBLIC_BASE_URL=https://www.worthdoing.ai | |
| 16 | +PORT=3001 | |
| 17 | + | |
| 18 | +# --- Deploy only --- | |
| 19 | +NGROK_AUTHTOKEN= | |
| 20 | + | |
| 21 | +# --- Models --- | |
| 22 | +CLAUDE_AGENT_MODEL=claude-opus-5 | |
| 23 | +CLAUDE_SYNTHESIS_MODEL=claude-opus-5 | |
| 24 | ||