Files
element-docker-demo/scripts/livekit-jwt-entrypoint.sh
Matthew Hodgson 196b10fb11 move things around
2024-11-08 10:22:00 +00:00

10 lines
257 B
Bash
Executable File

#!/bin/bash
# launch lk-jwt-service with secrets from disk
export LK_JWT_PORT=8080
export LIVEKIT_URL=wss://${LIVEKIT_FQDN}
export LIVEKIT_KEY=$(</run/secrets/livekit_api_key)
export LIVEKIT_SECRET=$(</run/secrets/livekit_secret_key)
exec /lk-jwt-service