Se agregaron los moduloes de api_v2

This commit is contained in:
2025-10-03 23:16:47 -06:00
parent ac075bfeb7
commit 7149515606
60 changed files with 3714 additions and 252 deletions

View File

@@ -28,12 +28,14 @@ class Settings(BaseSettings):
# Configuración del servidor
HOST: str = "0.0.0.0"
PORT: int = 8001
# Configuración de Celery
CELERY_BROKER_URL: str = ""
CELERY_RESULT_BACKEND: str = ""
# Configuración de seguridad
SECRET_KEY: str = "your-secret-key-here"
ALGORITHM: str = "HS256"
ACCESS_TOKEN_EXPIRE_MINUTES: int = 30
model_config = {"env_file": ".env"}