config: add production domain to CORS allowed origins #33

Merged
Saani merged 1 commits from feature/meetings into main 2025-11-25 17:38:17 +00:00
Showing only changes of commit 7ee3663ffa - Show all commits

View File

@ -19,7 +19,8 @@ ALLOWED_HOSTS = os.getenv(
CORS_ALLOWED_ORIGINS = os.getenv(
'CORS_ALLOWED_ORIGINS',
'http://localhost:3000,http://127.0.0.1:3000'
'http://localhost:3000,http://127.0.0.1:3000,https://attunehearttherapy.com
'
).split(',')