webhook to site

This commit is contained in:
poturaevpetr
2025-12-29 13:09:35 +05:00
parent 76b5b26c75
commit 3930ea7021
2 changed files with 45 additions and 2 deletions
+9 -1
View File
@@ -19,4 +19,12 @@ APP_TITLE = "Speech Analytics API"
APP_VERSION = "1.0.0"
PORT = int(os.getenv("PORT", "8000"))
HOST = os.getenv("HOST", "localhost")
HOST = os.getenv("HOST", "localhost")
# Calls_WEB_Client_main Webhook Configuration
CALLS_WEB_CLIENT_URL = os.getenv(
"CALLS_WEB_CLIENT_URL",
"http://calls_web_client:8000"
)
WEBHOOK_ENDPOINT = f"{CALLS_WEB_CLIENT_URL}/api/transcription/webhook"
WEBHOOK_API_KEY = os.getenv("WEBHOOK_API_KEY", "webhook_secret_key")