forked from syntaxbullet/aurorabot
27 lines
924 B
Plaintext
27 lines
924 B
Plaintext
# =============================================================================
|
|
# Aurora Environment Configuration
|
|
# =============================================================================
|
|
# Copy this file to .env and update with your values
|
|
# For production, see .env.prod.example with security recommendations
|
|
# =============================================================================
|
|
|
|
# Database
|
|
# For production: use a strong password (openssl rand -base64 32)
|
|
DB_USER=aurora
|
|
DB_PASSWORD=aurora
|
|
DB_NAME=aurora
|
|
DB_PORT=5432
|
|
DB_HOST=db
|
|
DATABASE_URL=postgres://aurora:aurora@db:5432/aurora
|
|
|
|
# Discord
|
|
# Get from: https://discord.com/developers/applications
|
|
DISCORD_BOT_TOKEN=your-discord-bot-token
|
|
DISCORD_CLIENT_ID=your-discord-client-id
|
|
DISCORD_GUILD_ID=your-discord-guild-id
|
|
|
|
# Server (for remote access scripts)
|
|
# Use a non-root user (see shared/scripts/setup-server.sh)
|
|
VPS_USER=deploy
|
|
VPS_HOST=your-vps-ip
|