jom / run.sh
radames's picture
first
2af848d
raw
history blame
178 Bytes
#!/bin/bash
python -m http.server 8080 --directory ./static/ & echo $! > http_server.pid
uvicorn "app:app" --port 7860 --host 0.0.0.0
pkill -F http_server.pid
rm http_server.pid