-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
36 lines (29 loc) · 714 Bytes
/
env.example
File metadata and controls
36 lines (29 loc) · 714 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
29
30
31
32
33
34
35
36
# Discord Configuration
DISCORD_TOKEN=your_bot_token_here
DISCORD_CLIENT_ID=your_client_id_here
DISCORD_CLIENT_SECRET=your_client_secret_here
# Database Configuration
POSTGRES_USER=unicord
POSTGRES_PASSWORD=unicord123
POSTGRES_DB=unicord
# Redis Configuration
REDIS_PASSWORD=unicord123
# Optional: Custom ports
NGINX_PORT_HTTP=80
NGINX_PORT_HTTPS=443
PROMETHEUS_PORT=9090
# Bot Configuration
BOT_PREFIX=!
BOT_INTENTS=513
BOT_AUTO_SYNC_COMMANDS=true
BOT_MENTION_PREFIX=true
BOT_HANDLE_ALL_MESSAGES=true
# Logging
LOG_LEVEL=info
LOG_FILE=./logs/unicord.log
# Security
JWT_SECRET=your_jwt_secret_here
SESSION_SECRET=your_session_secret_here
# Rate Limiting
RATE_LIMIT_WINDOW=900000
RATE_LIMIT_MAX_REQUESTS=100