forked from blackms/aistack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
47 lines (36 loc) · 1.15 KB
/
Copy path.env.example
File metadata and controls
47 lines (36 loc) · 1.15 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# AI Stack Configuration
# JWT Authentication
JWT_SECRET=your-secret-key-here-change-this-in-production
REFRESH_SECRET=your-refresh-secret-key-here-change-this-in-production
# Default Admin Password (change immediately after first login)
ADMIN_PASSWORD=admin123
# Node Environment
NODE_ENV=development
# Logging
LOG_LEVEL=info
LOG_FORMAT=pretty
# Error Tracking (optional)
SENTRY_DSN=https://your-sentry-dsn@sentry.io/project-id
# Web Server
PORT=3001
HOST=localhost
# LLM Providers (at least one required)
ANTHROPIC_API_KEY=your-anthropic-api-key
OPENAI_API_KEY=your-openai-api-key
# Optional: Ollama Configuration
OLLAMA_BASE_URL=http://localhost:11434
# Optional: GitHub Integration
GITHUB_TOKEN=your-github-token
# Optional: Vector Search
VECTOR_SEARCH_ENABLED=false
VECTOR_SEARCH_PROVIDER=openai
VECTOR_SEARCH_MODEL=text-embedding-3-small
# Optional: Slack Integration
SLACK_WEBHOOK_URL=https://hooks.slack.com/services/YOUR/WEBHOOK/URL
SLACK_CHANNEL=#agentstack
SLACK_USERNAME=AgentStack Bot
SLACK_ICON_EMOJI=:robot_face:
SLACK_NOTIFY_ON_AGENT_SPAWN=false
SLACK_NOTIFY_ON_WORKFLOW_COMPLETE=true
SLACK_NOTIFY_ON_ERRORS=true
SLACK_NOTIFY_ON_REVIEW_LOOP=true