feat: add whisper tasks

This commit is contained in:
Felix Spöttel
2023-01-28 12:30:02 +01:00
parent 8669a18110
commit a7ce71ed33
17 changed files with 209 additions and 88 deletions

View File

@@ -9,10 +9,12 @@ class Settings(BaseSettings):
ENVIRONMENT: str
# derived settings
BROKER_URI: str
BROKER_URL: str
if "pytest" in sys.modules:
settings = Settings(_env_file=".env.test", _env_file_encoding="utf-8") # type: ignore
settings = Settings(
_env_file=".env.test", _env_file_encoding="utf-8"
) # type: ignore
else:
settings = Settings()