fix: Update application port from 8000 to 9090 in configuration and deployment files
CI / lint-test-build (push) Failing after 43s

This commit is contained in:
2026-06-01 17:23:59 +02:00
parent 5051f2de83
commit df55953d31
5 changed files with 76 additions and 17 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ class Settings(BaseSettings):
app_env: str = Field(default="dev", alias="APP_ENV")
app_host: str = Field(default="0.0.0.0", alias="APP_HOST")
app_port: int = Field(default=8000, alias="APP_PORT")
app_port: int = Field(default=9090, alias="APP_PORT")
log_level: str = Field(default="INFO", alias="LOG_LEVEL")
log_json: bool = Field(default=True, alias="LOG_JSON")