mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-02 19:43:10 +03:00
- docker-compose.yml: owncord + livekit/livekit-server on shared network - Secrets (API key/secret) injected via .env → OWNCORD_VOICE_* env vars - livekit.yaml.example: template config with port ranges and node_ip guidance - .env.example: secret template with min-length reminder for API secret - .gitignore: add .env / Server/.env to prevent accidental secret commits Users: cp .env.example .env && cp livekit.yaml.example livekit.yaml, fill in values, then docker compose up -d
8 lines
343 B
Bash
8 lines
343 B
Bash
# Copy this file to .env and fill in your values.
|
|
# .env is gitignored — never commit real secrets.
|
|
|
|
# LiveKit credentials — generate strong random values (min 32 chars for secret)
|
|
# These must match the keys: section in livekit.yaml
|
|
LIVEKIT_API_KEY=change-me-api-key
|
|
LIVEKIT_API_SECRET=change-me-api-secret-must-be-at-least-32-characters
|