-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 718 Bytes
/
.env.example
File metadata and controls
28 lines (22 loc) · 718 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
# Set to 0 only for production
BOT_DEBUG=1
# GUILD_ID and DEV_GUILD_ID are numeric
GUILD_ID="123"
DEV_GUILD_ID="456"
DEV_BOT_TOKEN="YOUR_DEV_BOT_TOKEN"
DEV_BOT_URL="YOUR_DEV_BOT_INVITE_LINK"
LOCAL_DB_HOST="localhost"
LOCAL_DB_NAME="postgres"
LOCAL_DB_PORT="5432"
LOCAL_DB_USERNAME="postgres"
LOCAL_DB_PASSWORD="postgres"
# Use these env variables only if you want to test your bot when BOT_DEBUG = False
BOT_TOKEN="YOUR_BOT_TOKEN"
BOT_URL="YOUR_BOT_INVITE_LINK"
HOSTED_DB_URI="postgres://user:pass@host:port/database?option=value"
HOSTED_DB_HOST="hosted.postgresql.com"
HOSTED_DB_NAME="postgres"
HOSTED_DB_PORT="5432"
HOSTED_DB_USERNAME="postgres"
HOSTED_DB_PASSWORD="postgres"
TATSU_API_KEY="YOUR_TATSU_API_KEY"