- Add Backspace-design-prototype.html: finalized "Aether Drift" design language with warm matte surfaces and subtle frosted glass accents - Update CLAUDE.md with DESIGN SYSTEM section and remove Discord clone references - Rename all Opencord references to Backspace across the full codebase - Archive outdated design experiments and Discord-specific assets - Add science-backed accessibility fallback (prefers-reduced-transparency)
23 lines
534 B
Bash
23 lines
534 B
Bash
# Backspace Configuration
|
|
# Copy this file to .env and fill in the values
|
|
|
|
# Server
|
|
PORT=3000
|
|
HOST=0.0.0.0
|
|
|
|
# Authentication — generate a random secret: openssl rand -hex 32
|
|
JWT_SECRET=change_me_to_a_random_64_char_hex_string
|
|
|
|
# LiveKit Voice/Video (optional — leave empty to disable voice features)
|
|
LIVEKIT_URL=
|
|
LIVEKIT_API_KEY=
|
|
LIVEKIT_API_SECRET=
|
|
|
|
# Storage
|
|
UPLOAD_DIR=./data/uploads
|
|
DB_PATH=./data/backspace.db
|
|
MAX_UPLOAD_SIZE=104857600
|
|
|
|
# Registration — set to false to disable new user registration
|
|
REGISTRATION_OPEN=true
|