-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
29 lines (22 loc) · 739 Bytes
/
example.env
File metadata and controls
29 lines (22 loc) · 739 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
29
# Docker Compose Environment Variables
# Copy this file to .env and modify with your actual values
# API Key (shared between Discord Bot and LLM Agent)
API_KEY=your-super-secure-api-key-here
# Discord Bot Configuration
DISCORD_TOKEN=your_discord_bot_token_here
COMMAND_PREFIX=!
# Fantasy Football Configuration
DEFAULT_LEAGUE_ID=your_default_league_id_here
# LLM Configuration (optional)
LLM_URL=http://localhost:11434/api/generate
# Server Configuration
SERVER_HOST=0.0.0.0
SERVER_PORT=8000
SERVER_ENVIRONMENT=production
# Sleeper API Configuration
SLEEPER_API_BASE_URL=https://api.sleeper.app/v1
SLEEPER_API_RATE_LIMIT_PER_MINUTE=1000
SLEEPER_API_TIMEOUT_SECONDS=30
# Cache Configuration
CACHE_TTL_SECONDS=300
CACHE_MAX_SIZE=1000