29 lines
914 B
Plaintext
29 lines
914 B
Plaintext
# Docker WebUI Configuration
|
|
# Copy this file to .env and customize your settings
|
|
|
|
# ===============================================
|
|
# FRONTEND BUILD VARIABLES (REQUIRED)
|
|
# These are used at build time by Vite. Fill them before building.
|
|
# Get the values from your backend settings.
|
|
VITE_SUPABASE_URL=
|
|
VITE_SUPABASE_PUBLISHABLE_KEY=
|
|
VITE_SUPABASE_PROJECT_ID=
|
|
|
|
# Optional: Port to expose the web UI
|
|
PORT=8080
|
|
|
|
# ===============================================
|
|
# ADMIN CREDENTIALS
|
|
# ===============================================
|
|
# IMPORTANT: Change these before first run!
|
|
# These credentials are used to create the admin account
|
|
ADMIN_EMAIL=admin@docker-webui.local
|
|
ADMIN_PASSWORD=changeme123
|
|
|
|
# ===============================================
|
|
# TIMEZONE
|
|
# ===============================================
|
|
# Set your server timezone
|
|
# Examples: Europe/Copenhagen, America/New_York, Asia/Tokyo
|
|
TZ=Europe/Copenhagen
|