Compare commits

...

2 Commits

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' 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',
]