mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
8 lines
154 B
Bash
8 lines
154 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
. /takahe/.venv/bin/activate
|
||
|
|
||
|
python manage.py migrate
|
||
|
|
||
|
exec gunicorn takahe.asgi:application -k uvicorn.workers.UvicornWorker -b 0.0.0.0:8000
|