Express + Socket.IO backend with Google login on the sender page, a transparent overlay page for OBS/StreamLabs Browser Source, and TTS voice-over via the edge-tts Python CLI (same engine as t2sTelegramBot). Dockerized for deployment. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
15 lines
671 B
Text
15 lines
671 B
Text
PORT=3000
|
|
|
|
# OAuth 2.0 Client ID (Web application) from https://console.cloud.google.com/apis/credentials
|
|
# Authorized JavaScript origins must include the origin you open sender.html from,
|
|
# e.g. http://localhost:3000 for local dev.
|
|
GOOGLE_CLIENT_ID=
|
|
|
|
# Random long string, used to sign the session cookie. Generate with:
|
|
# node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
|
|
SESSION_SECRET=
|
|
|
|
# Microsoft Edge Read Aloud voice used for TTS (free, no API key needed).
|
|
# Same engine as t2sTelegramBot uses. List of voices: `npx edge-tts-node --list-voices` (if available)
|
|
# or see https://github.com/Migushthe2nd/MsEdgeTTS
|
|
TTS_VOICE=ru-RU-DmitryNeural
|