16 lines
671 B
Text
16 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
|