mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-06 18:22:44 +08:00
5 lines
142 B
Bash
5 lines
142 B
Bash
#!/bin/bash
|
|
set -e
|
|
python migrate/run.py
|
|
nginx -g 'daemon off;' &
|
|
exec gunicorn -k uvicorn.workers.UvicornWorker -w 2 -b 0.0.0.0:8000 main:app |