This repository has been archived on 2025-12-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
safe-marks-server/start.sh
Julian Freeman b4ee793b6f add docker
2025-10-18 15:34:41 -04:00

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