16 lines
579 B
Plaintext
16 lines
579 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
|
|
# Log directory (kord.log + dated rotations). Relative = from process cwd; use an absolute path on servers
|
|
# if the deploy directory is wiped (e.g. Jenkins): LOG_DIR=/var/lib/kord/logs
|
|
LOG_DIR=logs
|
|
|