Merge pull request 'fix(settings): remove line break in CORS_ALLOWED_ORIGINS string' (#34) from feature/meetings into main

Reviewed-on: https://gitea.blackbusinesslabs.com/ATTUNE-HEART-THERAPY/alternative-backend-service/pulls/34
This commit is contained in:
Saani 2025-11-25 17:42:12 +00:00
commit 199a7ef403

View File

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