21 lines
502 B
Bash
21 lines
502 B
Bash
# Copy this file to .env and fill in your values
|
|
# These are used by docker-compose
|
|
|
|
# Server
|
|
PORT=3000
|
|
BASE_URL=http://your-unraid-ip:3000
|
|
|
|
# Admin credentials (set before first launch)
|
|
ADMIN_USER=admin
|
|
ADMIN_PASS=changeme
|
|
|
|
# Session security — generate a random string, e.g.: openssl rand -hex 32
|
|
SESSION_SECRET=change-this-secret-in-production
|
|
|
|
# File upload limit in megabytes
|
|
MAX_FILE_MB=500
|
|
|
|
# Bootstrap branding (overridable later in Admin > Settings)
|
|
BRAND_NAME=StepView
|
|
BRAND_ACCENT=#3b82f6
|