We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c289ec commit bad6cf7Copy full SHA for bad6cf7
src/core/config.py
@@ -30,8 +30,8 @@ class BaseAppSettings(
30
APP_VERSION: str = "1.0.0"
31
APP_DESCRIPTION: str = "An e-commerce marketplace API built with FastAPI."
32
API_V1_PREFIX: str = "/api/v1"
33
- SERVER_HOST: str = "0.0.0.0"
34
- SERVER_PORT: int = 8000
+ SERVER_HOST: str = "0.0.0.0" # nosec B104
+ SERVER_PORT: int = 8000 # nosec B104
35
RELOAD: bool = True
36
LOG_LEVEL: str = "INFO"
37
0 commit comments