chore: Initial commit of Opencord base state

This commit is contained in:
Jannis Braun
2026-02-18 02:49:21 +01:00
commit 4fd17084a5
124 changed files with 17955 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
# Opencord 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/opencord.db
MAX_UPLOAD_SIZE=104857600
# Registration — set to false to disable new user registration
REGISTRATION_OPEN=true