-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
46 lines (34 loc) · 1.4 KB
/
Copy path.env.example
File metadata and controls
46 lines (34 loc) · 1.4 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
# ============================================
# Discord Bot Configuration
# ============================================
# Discord Bot Token (from Discord Developer Portal)
# Get this from: https://discord.com/developers/applications
DISCORD_TOKEN=your_discord_bot_token_here
# ============================================
# Supabase Configuration
# ============================================
# Supabase Project URL
# Found in: Supabase Dashboard > Settings > API > Project URL
SUPABASE_URL=https://your-project-ref.supabase.co
# Supabase Service Role Key
# IMPORTANT: Keep this secret! Never expose in client-side code
# Found in: Supabase Dashboard > Settings > API > service_role key
SUPABASE_SERVICE_ROLE_KEY=your_service_role_key_here
# ============================================
# Bot Configuration (Optional)
# ============================================
# Default cooldown in seconds (overridden per-server in database)
DEFAULT_COOLDOWN=300
# Maximum confession length
MAX_CONFESSION_LENGTH=2000
# Default filter action: 'flag', 'reject', or 'censor'
DEFAULT_FILTER_ACTION=flag
# Bot status message
BOT_STATUS=Anonymous Confessions
# ============================================
# Development/Production Settings
# ============================================
# Set to 'development' for debug logging, 'production' for normal
ENVIRONMENT=development
# Log level: DEBUG, INFO, WARNING, ERROR
LOG_LEVEL=INFO