Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Clebersla/RVC_V2_Huggingface_Version
dthomas84
/
RVC_RULE1
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
RVC_RULE1
/
main.py
David Thomas
ui tweaks
8ee452e
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
156 Bytes
""" Main file to run the application. """
import
uvicorn
from
app.app
import
app
if
__name__ ==
"__main__"
:
uvicorn.run(app, host=
"0.0.0.0"
, port=
8000
)