-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
55 lines (39 loc) · 1.68 KB
/
Copy path.env.example
File metadata and controls
55 lines (39 loc) · 1.68 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
54
55
# STARCoach - Environment Configuration
# Copy this file to .env and fill in your values
# ===========================================
# REQUIRED - Discord Bot Configuration
# ===========================================
# Your Discord bot token (from Discord Developer Portal)
DISCORD_TOKEN=your_discord_bot_token_here
# Channel ID where coaching reports are posted (right-click channel → Copy ID)
REPORT_CHANNEL_ID=1234567890123456789
# ===========================================
# REQUIRED - API Keys
# ===========================================
# Deepgram API key for transcription (https://console.deepgram.com)
DEEPGRAM_API_KEY=your_deepgram_api_key_here
# OpenRouter API key for AI (https://openrouter.ai/keys)
OPENROUTER_API_KEY=your_openrouter_api_key_here
# Interview model (fast, for real-time conversation)
OPENROUTER_MODEL=anthropic/claude-haiku-4.5:nitro
# Analysis model (deeper, for coaching feedback)
ANALYSIS_MODEL=anthropic/claude-sonnet-4.5
# ===========================================
# OPTIONAL - Customization
# ===========================================
# Role name that triggers practice sessions (default: "Practice")
PRACTICE_ROLE_NAME=Practice
# Readiness score threshold for "Interview Ready" (default: 70)
READINESS_THRESHOLD=70
# Command prefix for bot commands (default: "!")
COMMAND_PREFIX=!
# ===========================================
# OPTIONAL - Database
# ===========================================
# SQLite database path (default: data/starcoach.db)
DATABASE_PATH=data/starcoach.db
# ===========================================
# OPTIONAL - Debug
# ===========================================
# Enable debug logging (set to any value to enable)
# DEBUG=1