Skip to content

Commit df87ed9

Browse files
committed
.env fix
1 parent 6cad68e commit df87ed9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/core/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ class Settings(BaseSettings):
3434
ALGORITHM: str = "HS256"
3535
API_V1_STR: str = "/api/v1"
3636
API_V2_STR: str = "/api/v2"
37-
CORS_ORIGINS: list[CustomHttpUrlStr] = []
37+
CORS_ORIGINS: list[str] = ["*"]
3838
ENVIRONMENT: str = "dev"
3939
HOST: str = "127.0.0.1"
4040
LOG_LEVEL: LogLevel = LogLevel.INFO
41-
OTLP_ENDPOINT: CustomHttpUrlStr = ""
41+
OTLP_ENDPOINT: CustomHttpUrlStr = "http://localhost"
4242
PORT: int = 8000
4343
PROJECT_NAME: str = "FastAPI Template"
4444
RELOAD: bool = False

0 commit comments

Comments
 (0)