mirror of
https://github.com/bellingcat/whisperbox-transcribe.git
synced 2026-06-07 19:18:35 +03:00
14 lines
281 B
Python
14 lines
281 B
Python
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
API_SECRET: str
|
|
BROKER_URL: str
|
|
DATABASE_URI: str
|
|
ENVIRONMENT: str
|
|
|
|
TASK_SOFT_TIME_LIMIT: int = 3 * 60 * 60
|
|
TASK_HARD_TIME_LIMIT: int = 4 * 60 * 60
|
|
|
|
ENABLE_SHARING: bool = False
|