-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (27 loc) · 1.01 KB
/
.env.example
File metadata and controls
36 lines (27 loc) · 1.01 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
## Refer to the full elizaOS .env.example
## https://github.com/elizaOS/eliza
# Core Configuration
NODE_ENV=production
LOG_LEVEL=info
#Defaults to 3000
#API_PORT=
# Controls whether the web UI is available
# Set to "true" to force enable, "false" to force disable, or leave unset for automatic behavior
# Default: enabled in development, disabled in production
ELIZA_UI_ENABLE=
# Server authentication token for API access
# When set, all /api/* routes require X-API-KEY header with this value
ELIZA_SERVER_AUTH_TOKEN=
# Opitonal external DB location
#POSTGRES_URL=postgresql://username:password@hostname:5432/database_name
CHARACTER_FILE=/app/config/characters/server-bod.character.json
# Model Providers (many more avaiable)
# (OpenAI is necessary for creating embeddings)
OPENAI_API_KEY=sk-your-openai-key-here
ANTHROPIC_API_KEY=sk-ant-your-anthropic-key-here
# Production Monitoring (Optional)
SENTRY_DSN=your-sentry-dsn
# Advanced Configuration (optional)
CORS_ORIGIN=*
MAX_MEMORY_USAGE=2048
RATE_LIMIT_REQUESTS=100