Se integro el sistema de extraer el tipo de cambio

This commit is contained in:
2026-01-23 10:42:21 -06:00
parent bf26268f23
commit b8045d73e6
9 changed files with 228 additions and 18 deletions

View File

@@ -42,8 +42,13 @@ class Settings(BaseSettings):
# License
LICENSE_CHECK_ENABLED: bool = True
# External APIs
EXTERNAL_API_URL: str = "http://74.208.80.245:3000"
EXTERNAL_API_USER: str = ""
EXTERNAL_API_PASSWORD: str = ""
model_config = SettingsConfigDict(
env_file=".env", case_sensitive=True, extra="ignore", env_file_encoding="utf-8"
env_file=[".env", "../.env"], case_sensitive=True, extra="ignore", env_file_encoding="utf-8"
)
@property