-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 751 Bytes
/
.env.example
File metadata and controls
28 lines (22 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Database
DATABASE_URL=postgresql://forge:forge@localhost:5432/forge
# Redis
REDIS_URL=redis://localhost:6379
# Auth
AUTH_SECRET=your-secret-key-change-me
# Anthropic AI (available if set)
ANTHROPIC_API_KEY=your-anthropic-api-key
# OpenAI-compatible (available if set — works with OpenAI, OpenRouter, Groq, Ollama, etc.)
# Provider ID is always "openai" regardless of the actual service.
# OPENAI_API_KEY=sk-...
# OPENAI_BASE_URL=https://api.openai.com/v1
# OPENAI_PROVIDER_NAME=OpenAI
# OPENAI_MODELS=gpt-4o,gpt-4o-mini
# AI defaults (provider IDs: "anthropic" or "openai")
AI_DEFAULT_PROVIDER=anthropic
AI_DEFAULT_MODEL=claude-sonnet-4-5-20250929
# Server
NODE_ENV=development
API_PORT=3001
WEB_PORT=5173
CORS_ORIGINS=http://localhost:5173