-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (18 loc) · 1.05 KB
/
Copy path.env.example
File metadata and controls
23 lines (18 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ==============================================================================
# Discord Project Manager - Environment Configuration
# ==============================================================================
# Only secrets and environment-specific variables belong in this file.
# All operational tuning parameters (worker retries, backoff delays, API ports)
# have sensible static defaults configured in `src/config.py`.
# Discord Bot Credentials (from Discord Developer Portal)
DISCORD_BOT_TOKEN=your_discord_bot_token_here
DISCORD_CLIENT_ID=your_discord_client_id_here
# Optional: Specific guild ID for instant slash command sync during development
DISCORD_GUILD_ID=
# Database Connection URL (PostgreSQL)
DATABASE_URL=postgresql+asyncpg://postgres:postgrespassword@localhost:5432/dgg_pm
# Optional: Environment mode ("development" | "production", defaults to "development")
# In production, slash commands are not auto-synced on boot to prevent rate limits.
ENVIRONMENT=development
# Optional: Protect /metrics endpoint with Bearer token
# API_METRICS_TOKEN=