Merge pull request '$$#' (#4) from feature/authentication_and_authorization into main

Reviewed-on: https://gitea.blackbusinesslabs.com/ATTUNE-HEART-THERAPY/alternative-backend-service/pulls/4
This commit is contained in:
Saani 2025-11-22 17:27:34 +00:00
commit 9f7d2ebe43
2 changed files with 19 additions and 1 deletions

13
Nixpacks.toml Normal file
View File

@ -0,0 +1,13 @@
[phases.setup]
cmds = [
"pip install -r requirements.txt",
]
[phases.build]
cmds = [
"python manage.py collectstatic --noinput",
"python manage.py migrate",
]
[start]
cmd = "gunicorn booking_system.wsgi:application --bind 0.0.0.0:$PORT"

View File

@ -11,7 +11,12 @@ SECRET_KEY = os.getenv('JWT_SECRET', 'django-insecure-fallback-secret-key')
DEBUG = os.getenv('DEBUG', 'False').lower() == 'true'
ALLOWED_HOSTS = os.getenv('ALLOWED_HOSTS', 'localhost,127.0.0.1').split(',')
ALLOWED_HOSTS = [
'bocwoswwgks0gc8c84sgwkso.72.61.138.80.sslip.io',
'72.61.138.80',
'localhost',
'127.0.0.1',
]