Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
vrodriguezf
/
deepvats
like
0
Sleeping
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
6d51833
deepvats
/
run.sh
misantamaria
came back
2440321
about 1 year ago
raw
Copy download link
history
blame
Safe
212 Bytes
#!/bin/bash
service nginx start
python -m http.server --directory ./static --
bind
0.0.0.0 8000 &
echo
$! > http_server.pid
uvicorn
"app:app"
--port 7860 --host 0.0.0.0
pkill -F http_server.pid
rm
http_server.pid