Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Clone04/ServerWebsoketTest
Clone04
/
jom
like
0
Paused
App
Files
Files
Community
2af848d
jom
/
run.sh
radames
first
2af848d
over 1 year ago
raw
Copy download link
history
blame
Safe
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