-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
53 lines (42 loc) · 2.12 KB
/
Copy path.env.example
File metadata and controls
53 lines (42 loc) · 2.12 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
47
48
49
50
51
52
53
# Discord Audio Archive Bot - Environment Configuration
# Copy this file to .env and fill in your actual values
# =============================================================================
# REQUIRED CONFIGURATION
# =============================================================================
# Discord Bot Token (from https://discord.com/developers/applications)
# Create a new application, go to Bot section, and copy the token
DISCORD_TOKEN=your_discord_bot_token_here
# Target User ID (Discord user ID to record)
# Right-click on user in Discord (with Developer Mode enabled) and Copy ID
TARGET_USER_ID=123456789012345678
# =============================================================================
# EMAIL CONFIGURATION (Optional - for automatic email notifications)
# =============================================================================
# Gmail account for sending recordings
# Use Gmail App Password, NOT your regular password
# Generate App Password at: https://myaccount.google.com/apppasswords
EMAIL_USER=your_email@gmail.com
EMAIL_PASS=your_gmail_app_password
# Recipient email address for recordings
EMAIL_RECIPIENT=recipient@example.com
# =============================================================================
# ADVANCED CONFIGURATION (Optional)
# =============================================================================
# Audio quality settings (leave blank for defaults)
# AUDIO_BITRATE=256k
# AUDIO_SAMPLE_RATE=48000
# Recording file retention (days)
# LOCAL_RETENTION_DAYS=30
# Maximum recording duration (hours)
# MAX_RECORDING_HOURS=4
# =============================================================================
# SECURITY NOTES
# =============================================================================
#
# 1. NEVER commit this file with real values to version control
# 2. Use Gmail App Passwords, not regular passwords
# 3. Keep your Discord token secure and regenerate if compromised
# 4. Ensure you have consent from all parties before recording
# 5. Comply with local recording laws and Discord Terms of Service
#
# =============================================================================