13 lines
250 B
TOML
13 lines
250 B
TOML
[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" |