Moved to services/_archived/: - arbiter/ (v2.0.0) - superseded by arbiter-3.0/ - whitelist-manager/ - merged into Trinity Console Added README explaining what's archived and why. DO NOT DEPLOY archived services - kept for historical reference only. Chronicler #76
35 lines
1009 B
Plaintext
35 lines
1009 B
Plaintext
# Arbiter Discord Bot - Environment Variables
|
|
# Copy this file to .env and fill in actual values
|
|
|
|
# Discord Bot Configuration
|
|
DISCORD_BOT_TOKEN=your_discord_bot_token_here
|
|
DISCORD_CLIENT_ID=your_discord_client_id_here
|
|
DISCORD_CLIENT_SECRET=your_discord_client_secret_here
|
|
GUILD_ID=your_discord_server_id_here
|
|
|
|
# Application Configuration
|
|
APP_URL=https://discord-bot.firefrostgaming.com
|
|
PORT=3000
|
|
NODE_ENV=production
|
|
|
|
# Admin Access (comma-separated Discord user IDs)
|
|
ADMIN_DISCORD_IDS=discord_id_1,discord_id_2,discord_id_3
|
|
|
|
# Ghost CMS Integration
|
|
CMS_URL=https://firefrostgaming.com
|
|
CMS_ADMIN_KEY=your_ghost_admin_api_key_here
|
|
|
|
# Paymenter Webhook Security
|
|
WEBHOOK_SECRET=your_paymenter_webhook_secret_here
|
|
|
|
# Session Security
|
|
SESSION_SECRET=generate_random_32_char_string_here
|
|
|
|
# Email Configuration (SMTP)
|
|
SMTP_HOST=smtp.example.com
|
|
SMTP_USER=your_email@firefrostgaming.com
|
|
SMTP_PASS=your_email_password_here
|
|
|
|
# Database (if applicable - check code)
|
|
# DATABASE_URL=postgresql://user:pass@host:port/dbname
|