- Установлен BigBlueButton с Greenlight v3 frontend - Настроен SMTP через Microsoft 365 Relay (aiimpress-com0e.mail.protection.outlook.com:25) - Email отправка работает: noreply@ai-impress.com - Доступ: https://bbb.ai-impress.com - Настроена интеграция с Traefik для SSL - Включены: запись вебинаров (90 дней), webhooks для n8n, Prometheus экспорт - Локаль: русский язык (ru-RU) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
No EOL
350 B
Bash
Executable file
17 lines
No EOL
350 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
# load .env
|
|
. scripts/functions.sh
|
|
load_env
|
|
|
|
if [ ! "$ENABLE_RECORDING" == true ]; then
|
|
echo "Error: recording is disabled why can't use bbb-record"
|
|
echo "set ENABLE_RECORDING in .env if you want to use it"
|
|
exit 1
|
|
fi
|
|
|
|
docker compose exec recordings bbb-record $@
|
|
docker compose logs --tail=15 recordings |