27 lines
795 B
Plaintext
27 lines
795 B
Plaintext
# Discord Bot Configuration
|
|
GUARDDEN_DISCORD_TOKEN=your_discord_bot_token_here
|
|
GUARDDEN_DISCORD_PREFIX=!
|
|
|
|
# Optional access control (comma-separated IDs, no quotes)
|
|
# Example: 123456789012345678,987654321098765432
|
|
GUARDDEN_ALLOWED_GUILDS=
|
|
GUARDDEN_OWNER_IDS=
|
|
|
|
# Database Configuration (for local development without Docker)
|
|
GUARDDEN_DATABASE_URL=postgresql://guardden:guardden@localhost:5432/guardden
|
|
|
|
# Logging
|
|
GUARDDEN_LOG_LEVEL=INFO
|
|
|
|
# AI Configuration (optional)
|
|
# Options: none, anthropic, openai
|
|
GUARDDEN_AI_PROVIDER=none
|
|
|
|
# Anthropic API key (required if AI_PROVIDER=anthropic)
|
|
# Get your key at: https://console.anthropic.com/
|
|
GUARDDEN_ANTHROPIC_API_KEY=
|
|
|
|
# OpenAI API key (required if AI_PROVIDER=openai)
|
|
# Get your key at: https://platform.openai.com/api-keys
|
|
GUARDDEN_OPENAI_API_KEY=
|