fix: suppress bandit B104 false positive for 0.0.0.0 binding in config.py

Agent-Logs-Url: https://github.com/christianlouis/InboxConverge/sessions/3b265b6d-865c-4453-b22c-60feff2aa049

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-28 20:37:25 +00:00
parent c406cb09d3
commit c092dd9ac6
2 changed files with 7 additions and 1 deletions
+3 -1
View File
@@ -36,7 +36,9 @@ class Settings(BaseSettings):
API_V1_PREFIX: str = "/api/v1"
# Server
HOST: str = "0.0.0.0"
HOST: str = (
"0.0.0.0" # nosec B104 intentional: containerised service binds all interfaces
)
PORT: int = 8000
# Database