feature/meetings #32

Merged
Saani merged 2 commits from feature/meetings into main 2025-11-24 18:31:24 +00:00
Showing only changes of commit 16c4afdce5 - Show all commits

View File

@ -12,7 +12,10 @@ SECRET_KEY = os.getenv('JWT_SECRET', 'django-insecure-fallback-secret-key')
DEBUG = os.getenv('DEBUG') DEBUG = os.getenv('DEBUG')
ALLOWED_HOSTS = ["*"] ALLOWED_HOSTS = os.getenv(
'ALLOWED_HOSTS',
'*'
).split(',')
CORS_ALLOWED_ORIGINS = os.getenv( CORS_ALLOWED_ORIGINS = os.getenv(
'CORS_ALLOWED_ORIGINS', 'CORS_ALLOWED_ORIGINS',