13 lines
447 B
Plaintext
13 lines
447 B
Plaintext
# Discord Authentication
|
|
DISCORD_TOKEN=your_token_here
|
|
DISCORD_CLIENT_ID=your_client_id_here
|
|
|
|
# Database Configuration (PostgreSQL)
|
|
# User/pass from docker-compose.yml
|
|
DATABASE_URL="postgresql://kord:password@localhost:5432/kord_db?schema=public"
|
|
|
|
# Logging (log4js — file only under LOG_DIR, no console appender)
|
|
# Levels: trace, debug, info, warn, error, fatal
|
|
LOG_LEVEL=info
|
|
# Daily log files; keep 7 rotated days (see logger.ts)
|
|
LOG_DIR=logs |