-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env.example
More file actions
25 lines (19 loc) · 1.08 KB
/
.env.example
File metadata and controls
25 lines (19 loc) · 1.08 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
# Get your bot token from: https://discord.com/developers/applications
# Preferred env var (matches src/bot.py)
DISCORD_BOT_TOKEN=your_bot_token_here
# Legacy (still supported by the code for compatibility)
DISCORD_TOKEN=
# You can get a free PostgreSQL database from neon.tech, supabase.com, or render.com
# Format (Postgres): postgresql+asyncpg://user:password@host:port/database
# For local development, you might prefer to run postgres using Docker.
DATABASE_URL=postgresql+asyncpg://user:password@host:5432/database
# Extensions that MUST load - The bot won't start without them (defaults to an empty list)
CORE_EXTENSIONS=[]
# Extensions that can but don't have to load (defaults to an empty list)
# Any other extension not listed here (or in core extensions) won't be loaded, even if it is discovered by the bot.
ADDITIONAL_EXTENSIONS=[]
# The prefix to use for prefix commands (defaults to "&"" if not set)
COMMAND_PREFIX=&
# Optional: GitHub token for higher API rate limits (5000/hr vs 60/hr)
# Get one at: https://github.com/settings/tokens (no scopes needed for public data)
GITHUB_TOKEN=