13 lines
447 B
Plaintext
13 lines
447 B
Plaintext
# Discord Bot Token (wird in Coolify als Umgebungsvariable gesetzt)
|
|
DISCORD_TOKEN=your_discord_bot_token_here
|
|
|
|
# Database Connection - Option 1: Full URL (PostgreSQL/MySQL)
|
|
DATABASE_URL=postgresql://username:password@host:port/database_name
|
|
# DATABASE_URL=mysql://username:password@host:port/database_name
|
|
|
|
# Database Connection - Option 2: Individual Variables
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=hoi4_elo
|
|
DB_USER=username
|
|
DB_PASSWORD=password |