- Expanded .gitignore: miku-app/, dashboard/, .continue/, *.code-workspace, cheshire-cat artifacts (venv, benchmarks, test output), jinja templates - Sanitized .env.example: replaced real webhook URL and user ID with placeholders - Removed SECRETS_CONFIGURED.md (contained sensitive token info) - Removed bot/static/system.html.bak (stale backup) - Removed bot/utils/voice_receiver.py.old (superseded)
18 lines
567 B
Plaintext
18 lines
567 B
Plaintext
# ============================================
|
|
# Miku Discord Bot - Environment Variables
|
|
# ============================================
|
|
# Copy this file to .env and fill in your values
|
|
# NEVER commit .env to version control!
|
|
|
|
# Discord Configuration
|
|
DISCORD_BOT_TOKEN=your_discord_bot_token_here
|
|
|
|
# API Keys
|
|
CHESHIRE_CAT_API_KEY= # Empty = no auth
|
|
|
|
# Error Reporting (Optional)
|
|
ERROR_WEBHOOK_URL=https://discord.com/api/webhooks/YOUR_WEBHOOK_ID/YOUR_WEBHOOK_TOKEN
|
|
|
|
# Owner Configuration
|
|
OWNER_USER_ID=YOUR_DISCORD_USER_ID # Your Discord user ID for admin features
|