8 lines
226 B
Bash
Executable File
8 lines
226 B
Bash
Executable File
#!/bin/sh
|
|
|
|
python manage.py collectstatic --noinput
|
|
python manage.py migrate
|
|
|
|
# python -m uvicorn --port 8099 config.asgi:application
|
|
python -m gunicorn -b 0.0.0.0:8099 -k uvicorn.workers.UvicornWorker config.asgi:application
|