-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
52 lines (38 loc) · 1.79 KB
/
.env.example
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
# File: .env.example
# Rename this file to .env after filling in your values
# Twitch Credentials
TWITCH_OAUTH_TOKEN=oauth:YOUR_TWITCH_OAUTH_TOKEN # Must start with "oauth:"
TWITCH_CHANNEL=YOUR_TWITCH_CHANNEL_NAME
BOT_NAME=YOUR_BOT_USERNAME
BROADCASTER_ID=YOUR_TWITCH_BROADCASTER_ID
# Streamer.Bot WebSocket Configuration
STREAMERBOT_WS_URI=ws://localhost:YOUR_STREAMERBOT_PORT # Replace with your Streamer.Bot port
# OpenAI API Configuration
OPENAI_API_KEY=YOUR_OPENAI_API_KEY
OPENAI_MODEL=gpt-3.5-turbo # or gpt-4 if you have access
# MongoDB Database Configuration
MONGO_URI=mongodb://YOUR_MONGODB_USERNAME:YOUR_MONGODB_PASSWORD@YOUR_MONGODB_HOST:YOUR_MONGODB_PORT/
MONGO_DB_NAME=YOUR_MONGODB_DATABASE_NAME
# Little Navmap Configuration
LITTLENAVMAP_URL=http://localhost:8965 # Replace with your Little Navmap URL and port if different
# CheckWX API Key (for METAR)
CHECKWX_API_KEY=YOUR_CHECKWX_API_KEY
# OpenWeatherMap API Key (for real-world weather)
OPENWEATHERMAP_API_KEY=YOUR_OPENWEATHERMAP_API_KEY
# --- Optional Settings ---
# Voice Settings (for TTS)
VOICE_ENABLED=true # or false
VOICE_PREFIX=Hey Overlord # Keyword to trigger voice commands
VOICE_COMMAND_TIMEOUT=5 # Seconds
VOICE_COMMAND_PHRASE_LIMIT=10 # Seconds
VOICE_COMMAND_LANGUAGE=en-US
# Bot Personality and Behavior
BOT_TRIGGER_WORDS=bot,assistant,overlord # Words that trigger the bot to respond
BOT_PERSONALITY="You are an AI Overlord managing a flight simulation Twitch channel."
# Logging and Debugging
VERBOSE=false # or true
LOG_LEVEL=INFO # DEBUG, INFO, WARNING, ERROR, CRITICAL
# Sentry Error Tracking (Optional)
SENTRY_DSN=YOUR_SENTRY_DSN # Remove or leave blank if not using Sentry
# Configuration File (Optional - if using a YAML config file)
CONFIG_FILE=config.yaml # Specify the path to your config file if not using .env