7d3333bbff
Release / build (aarch64, true, ubuntu-latest, sudo apt-get install -y rsync, stable, aarch64-unknown-linux-musl) (push) Has been cancelled
Release / build (arm-v7, true, ubuntu-latest, sudo apt-get install -y rsync, stable, armv7-unknown-linux-musleabihf) (push) Has been cancelled
Release / build (linux, ubuntu-latest, sudo apt-get install -y rsync, stable, x86_64-unknown-linux-musl) (push) Has been cancelled
Release / build (macos, macos-latest, brew install rsync, stable, x86_64-apple-darwin) (push) Has been cancelled
Release / release (push) Has been cancelled
Release / add (aarch64, true, ubuntu-latest, stable, aarch64-unknown-linux-musl) (push) Has been cancelled
Release / add (arm-v7, true, ubuntu-latest, stable, armv7-unknown-linux-musleabihf) (push) Has been cancelled
Release / add (linux, ubuntu-latest, stable, x86_64-unknown-linux-musl) (push) Has been cancelled
Release / add (macos, macos-latest, stable, x86_64-apple-darwin) (push) Has been cancelled
18 lines
469 B
Bash
18 lines
469 B
Bash
#!/bin/bash
|
|
# Generate a LiveKit API key/secret pair.
|
|
# Copy the output into:
|
|
# 1. deploy/livekit.yaml (keys section)
|
|
# 2. VoceChat admin -> Settings -> video (LiveKit) config page
|
|
|
|
set -e
|
|
|
|
echo "Generating LiveKit API key and secret..."
|
|
echo ""
|
|
|
|
docker run --rm livekit/livekit-server generate-keys
|
|
|
|
echo ""
|
|
echo "Copy the API Key and Secret into:"
|
|
echo " 1. deploy/livekit.yaml -> keys section"
|
|
echo " 2. VoceChat admin panel -> Settings -> video (LiveKit)"
|