-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
48 lines (35 loc) · 1.87 KB
/
.env.example
File metadata and controls
48 lines (35 loc) · 1.87 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
# ComfyUI-DiscordSend Bot Environment Variables
# Copy this file to .env and fill in your values
# These override settings in config.yaml
# =============================================================================
# REQUIRED
# =============================================================================
# Discord bot token from Discord Developer Portal
DISCORDBOT_DISCORD_TOKEN=your_bot_token_here
# =============================================================================
# OPTIONAL - ComfyUI Connection
# =============================================================================
# ComfyUI server URL (default: http://127.0.0.1:8188)
# DISCORDBOT_COMFYUI_URL=http://127.0.0.1:8188
# ComfyUI WebSocket URL (default: auto-derived from COMFYUI_URL)
# DISCORDBOT_COMFYUI_WS_URL=ws://127.0.0.1:8188/ws
# Request timeout in seconds (default: 30)
# DISCORDBOT_COMFYUI_TIMEOUT=30
# =============================================================================
# OPTIONAL - Database
# =============================================================================
# Database URL (default: SQLite in bot/data/bot.db)
# For PostgreSQL: postgresql+asyncpg://user:pass@localhost/dbname
# DISCORDBOT_DATABASE_URL=sqlite+aiosqlite:///bot/data/bot.db
# =============================================================================
# OPTIONAL - Defaults
# =============================================================================
# Maximum pending jobs per user (default: 3)
# DISCORDBOT_MAX_QUEUE_PER_USER=3
# Path to default workflow JSON file
# DISCORDBOT_WORKFLOW_PATH=bot/data/default_workflow_api.json
# =============================================================================
# OPTIONAL - Discord Application
# =============================================================================
# Discord application ID (for slash command registration)
# DISCORDBOT_APPLICATION_ID=your_app_id_here