dockerfix

This commit is contained in:
2026-04-09 09:31:34 +00:00
parent 880f5caf2d
commit 5212cab8b6
5 changed files with 28 additions and 8 deletions

View File

@@ -12,7 +12,7 @@ from app.services.tasks import task_manager
def get_allowed_origins() -> List[str]:
origins = os.getenv("CORS_ORIGINS", "http://localhost:5173,http://localhost:8080")
origins = os.getenv("CORS_ORIGINS", "http://localhost:8451,http://localhost:8080")
return [origin.strip() for origin in origins.split(",") if origin.strip()]