fifteen/.env.example
2026-03-01 21:59:44 +01:00

22 lines
785 B
Text

# Copy to .env and fill in values
# PostgreSQL
POSTGRES_PASSWORD=changeme-strong-password
# Valkey (Redis-compatible)
VALKEY_PASSWORD=changeme-strong-valkey-password
# Admin password hash (bcrypt)
# Generate with: node -e "require('bcryptjs').hash('yourpassword', 12).then(console.log)"
ADMIN_PASSWORD_HASH=$2b$12$placeholder
# Admin JWT secret (min 32 chars, used to sign session tokens)
# Generate with: node -e "console.log(require('crypto').randomBytes(48).toString('hex'))"
ADMIN_JWT_SECRET=changeme-generate-a-long-random-string-here
# Optional: override service URLs for local dev
# DATABASE_URL=postgres://app:changeme@localhost:5432/fifteenmin
# REDIS_HOST=localhost
# REDIS_PORT=6379
# REDIS_PASSWORD=changeme-strong-valkey-password
# VALHALLA_URL=http://localhost:8002