-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathenv.example
More file actions
48 lines (35 loc) · 1.84 KB
/
env.example
File metadata and controls
48 lines (35 loc) · 1.84 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
48
# Discord Bot Configuration
# Copy this file to .env and fill in your credentials
# =============================================================================
# DISCORD CREDENTIALS (REQUIRED)
# =============================================================================
# Get these from the Discord Developer Portal:
# https://discord.com/developers/applications
# Your Discord Application ID
DISCORD_APPLICATION_ID=your_discord_application_id_here
# Your Discord Bot Token
DISCORD_API_TOKEN=your_discord_bot_token_here
# =============================================================================
# MODEL PROVIDER (REQUIRED - at least one)
# =============================================================================
# OpenAI API Key (get from https://platform.openai.com/api-keys)
OPENAI_API_KEY=your_openai_api_key_here
# Or use Anthropic (get from https://console.anthropic.com/)
# ANTHROPIC_API_KEY=your_anthropic_api_key_here
# =============================================================================
# OPTIONAL: TELEGRAM (for multi-platform setup)
# =============================================================================
# Telegram Bot Token (get from @BotFather)
TELEGRAM_BOT_TOKEN=your_telegram_bot_token_here
# =============================================================================
# OPTIONAL: DATABASE
# =============================================================================
# PostgreSQL connection string (falls back to PGLite if not set)
# POSTGRES_URL=postgresql://user:password@localhost:5432/elizaos
# =============================================================================
# OPTIONAL: LOGGING
# =============================================================================
# Log level (debug, info, warn, error)
LOG_LEVEL=info
# Rust-specific logging (for Rust implementation)
RUST_LOG=info,discord_agent=debug