mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-06 18:22:44 +08:00
6 lines
148 B
Bash
6 lines
148 B
Bash
#!/bin/bash
|
|
set -e
|
|
python migrate/run.py
|
|
port="${FOXEL_PORT:-80}"
|
|
exec gunicorn -k uvicorn.workers.UvicornWorker -w 1 -b "0.0.0.0:${port}" main:app
|