6 lines
142 B
Bash
6 lines
142 B
Bash
#!/bin/bash
|
|
|
|
python create_db.py
|
|
# 这里必须是 0.0.0.0:8000
|
|
gunicorn -w 4 -k uvicorn.workers.UvicornWorker api_server:app -b 0.0.0.0:8000
|