mirror of
https://github.com/JetSprow/J-Board-Lite.git
synced 2026-05-01 01:14:10 +05:30
docs: add guided panel deployment
This commit is contained in:
15
.env.example
15
.env.example
@@ -1,12 +1,23 @@
|
||||
# PostgreSQL
|
||||
# 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 rate limiting and caching
|
||||
# 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"
|
||||
|
||||
Reference in New Issue
Block a user