Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sob111
/
xtts-castellano
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
sob111
commited on
Sep 9
Commit
97a2523
·
verified
·
1 Parent(s):
8958e10
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
from flask import Flask
2
+
3
+
app = Flask(__name__)
4
+
5
+
@app.route("/")
6
+
def home():
7
+
return "I'm alive, but doing nothing!"
8
+
9
+
if __name__ == "__main__":
10
+
app.run(host="0.0.0.0", port=7860)