Compare commits

...

2 Commits

Author SHA1 Message Date
Felipe Cardoso
7d0319462e 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
2025-03-17 12:19:37 +01:00
Felipe Cardoso
1946484fd6 Update gitignore 2025-03-17 08:27:09 +01:00
2 changed files with 5 additions and 1 deletions

4
.gitignore vendored
View File

@@ -304,3 +304,7 @@ cython_debug/
# Docker volumes
postgres_data*/
exports/*
.junie

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