We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cad68e commit df87ed9Copy full SHA for df87ed9
app/core/config.py
@@ -34,11 +34,11 @@ class Settings(BaseSettings):
34
ALGORITHM: str = "HS256"
35
API_V1_STR: str = "/api/v1"
36
API_V2_STR: str = "/api/v2"
37
- CORS_ORIGINS: list[CustomHttpUrlStr] = []
+ CORS_ORIGINS: list[str] = ["*"]
38
ENVIRONMENT: str = "dev"
39
HOST: str = "127.0.0.1"
40
LOG_LEVEL: LogLevel = LogLevel.INFO
41
- OTLP_ENDPOINT: CustomHttpUrlStr = ""
+ OTLP_ENDPOINT: CustomHttpUrlStr = "http://localhost"
42
PORT: int = 8000
43
PROJECT_NAME: str = "FastAPI Template"
44
RELOAD: bool = False
0 commit comments