Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
microsoft-cognitive-service
/
mm-react
like
235
Runtime error
App
Files
Files
Community
8
Fetching metadata from the HF Docker repository...
05d5a3e
mm-react
/
AllInOneApp
/
flaskTest.py
JJteam
draft of dockerfile
acc4ffe
almost 2 years ago
raw
Copy download link
history
blame
Safe
160 Bytes
from
flask
import
Flask
app = Flask(__name__)
@app.route(
'/'
)
def
index
():
return
'Web App with Python Flask!'
app.run(host=
'0.0.0.0'
, port=
7860
)