forked from bigbluebutton-bot/bbb-translation-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env_example
30 lines (23 loc) · 2.47 KB
/
.env_example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
BBB_API_URL="https://example.com/bigbluebutton/api/" # string (URL to the bbb api server)
BBB_API_SECRET="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" # string (Secret to authenticate with the bbb api server)
BBB_API_SHA="SHA256" # string (Hashing algorithm to use for the secret)
BBB_CLIENT_URL="https://example.com/html5client/" # string (URL to the bbb html5client server)
BBB_CLIENT_WS="wss://example.com/html5client/websocket" # string (URL to the bbb html5client websocket server)
BBB_PAD_URL="https://example.com/pad/" # string (URL to the bbb etherpad server)
BBB_PAD_WS="wss://example.com/pad/" # string (URL to the bbb etherpad websocket server)
BBB_WEBRTC_WS="wss://example.com/bbb-webrtc-sfu" # string (URL to the bbb-webrtc-sfu server)
CHANGESET_EXTERNAL="true" # true, false (If the changeset server is running on a different host or in a container)
CHANGESET_HOST="changeset-server" # string (Host to run the server on and to which the client will connect to)
CHANGESET_PORT="5051" # int (Port to run the server on and to which the client will connect to)
TRANSCRIPTION_SERVER_MODEL="medium" # tiny, base, small, medium, large (Whisper model to use)
TRANSCRIPTION_SERVER_ONLY_ENGLISH="false" # true, false (Only use the english model)
TRANSCRIPTION_SERVER_RECORD_TIMEOUT="10.0" # float (How real time the recording is in seconds)
TRANSCRIPTION_SERVER_TASK="transcribe" # transcribe, translate (transcribe or translate it to english)
TRANSCRIPTION_SERVER_HOST="0.0.0.0" # string (Host to run the server on)
TRANSCRIPTION_SERVER_EXTERNAL_HOST="transcription-server" # string (Host to run the server on. This will be send to the client. The client will then connect to this host over UDP.)
TRANSCRIPTION_SERVER_PORT_TCP="5000" # int (Port to run the TCP server on)
TRANSCRIPTION_SERVER_PORT_UDP="5001" # int (Port to run the UDP server on)
TRANSCRIPTION_SERVER_SECRET="your_secret_token" # string (Secret token to authenticate clients)
TRANSCRIPTION_SERVER_HEALTHCHECK_PORT="8001" # int (Port to run the healthcheck server on)
TRANSLATION_SERVER_URL="translation-server" # string (Host to run the server on and to which the client will connect to)
TRANSLATION_SERVER_SECRET="your_secret_token" # string (Secret token to authenticate clients)