-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
31 lines (23 loc) · 1.09 KB
/
Copy path.env.example
File metadata and controls
31 lines (23 loc) · 1.09 KB
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
29
30
31
# Agentic Configuration
# Copy this file to .env and fill in your values
# Required: Anthropic API key for Claude
ANTHROPIC_API_KEY=sk-ant-your-key-here
# Optional: Specific Claude model to use (default: claude-sonnet-4-20250514)
# CLAUDE_MODEL=claude-sonnet-4-20250514
# Optional: Mem0 API key for shared agent memory
# MEM0_API_KEY=m0-your-key-here
# Optional: PostgreSQL URL for persistent task storage (recommended)
# Railway auto-injects this when you add a PostgreSQL service
# DATABASE_URL=postgresql://user:password@host:5432/railway
# Optional: Redis URL for persistent task storage (fallback)
# If neither DATABASE_URL nor REDIS_URL is set, uses in-memory storage
# REDIS_URL=redis://localhost:6379
# Optional: Path to repository with agent definitions
# If not set, uses current working directory
# REPO_PATH=/path/to/your/project
# Optional: Server port (default: 3000)
# PORT=3000
# Optional: Slack integration for task channels
# When enabled, creates a Slack channel for each agent task
# SLACK_BOT_TOKEN=xoxb-your-bot-token
# SLACK_CHANNEL_ID=C0123456789 # Default channel for notifications