add env.test

This commit is contained in:
poturaevpetr
2025-12-25 14:24:57 +05:00
parent c39b348472
commit cfcc84eac9
3 changed files with 22 additions and 2 deletions
+3
View File
@@ -17,3 +17,6 @@ ALLOWED_AUDIO_EXTENSIONS = {".mp3", ".wav", ".ogg", ".flac", ".m4a", ".aac"}
# Application
APP_TITLE = "Speech Analytics API"
APP_VERSION = "1.0.0"
PORT = int(os.getenv("PORT", "8000"))
HOST = os.getenv("HOST", "localhost")