# ─── Backspace Configuration ──────────────────────────────── # Copy to .env and configure, or run ./install.sh to generate automatically. # Your server's public domain name (required) DOMAIN=example.com # ─── Server ───────────────────────────────────────────────── PORT=3000 HOST=0.0.0.0 # Authentication — generate with: openssl rand -hex 32 JWT_SECRET= # Registration — set to false to close signups after initial setup REGISTRATION_OPEN=true # Max file upload size in bytes (default: 100MB) MAX_UPLOAD_SIZE=104857600 # ─── LiveKit Voice/Video ─────────────────────────────────── # To enable voice/video, fill in all three values below and add: # COMPOSE_PROFILES=voice # Leave empty to run Backspace without voice features. LIVEKIT_URL= LIVEKIT_API_KEY= LIVEKIT_API_SECRET= # ─── Docker Compose ──────────────────────────────────────── # Uncomment to enable the LiveKit service: # COMPOSE_PROFILES=voice