Files
J-Board-Lite/.env.example
2026-04-29 12:50:06 +10:00

24 lines
791 B
Plaintext

# J-Board panel
APP_PORT="3000"
SITE_NAME="J-Board"
# PostgreSQL for local tools; Docker Compose overrides host to db
POSTGRES_PASSWORD="jboard123"
DATABASE_URL="postgresql://jboard:jboard123@localhost:5432/jboard"
# NextAuth
# Use the public domain you will reverse proxy to this panel, for example https://panel.example.com
NEXTAUTH_SECRET="replace-with-a-long-random-secret"
NEXTAUTH_URL="https://your-domain.com"
# Must be at least 32 bytes, used for AES-256-GCM encryption
ENCRYPTION_KEY="0123456789abcdef0123456789abcdef"
# Redis connection URL for local tools; Docker Compose overrides host to redis
REDIS_URL="redis://localhost:6379"
# Initial admin account, used by npm run db:seed on first install
ADMIN_EMAIL="admin@jboard.local"
ADMIN_PASSWORD="admin123"
ADMIN_NAME="Admin"