Fix cors
All checks were successful
Build and Push Docker Images / changes (push) Successful in 6s
Build and Push Docker Images / build-backend (push) Successful in 49s
Build and Push Docker Images / build-frontend (push) Has been skipped

This commit is contained in:
2025-03-17 12:19:37 +01:00
parent 1946484fd6
commit 7d0319462e

View File

@@ -63,7 +63,7 @@ class Settings(BaseSettings):
ACCESS_TOKEN_EXPIRE_MINUTES: int = 1440 # 1 day
# CORS configuration
BACKEND_CORS_ORIGINS: List[str] = ["http://localhost:3000"]
BACKEND_CORS_ORIGINS: List[str] = ["http://localhost:3000", "https://eventspace.pragmazest.com"]
# Admin user
FIRST_SUPERUSER_EMAIL: Optional[str] = None