Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
srivatsavdamaraju
/
server
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
srivatsavdamaraju
commited on
Apr 12, 2024
Commit
43a2ba7
·
verified
·
1 Parent(s):
04c4540
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+2
-1
app.py
CHANGED
Viewed
@@ -6,4 +6,5 @@ app = Flask(__name__)
6
def index():
7
return 'Hello, World!'
8
9
-
app.run(host=
'
0.0.0.0
'
)
6
def index():
7
return 'Hello, World!'
8
9
+
if __name__ ==
'
__main__
'
:
10
+
app.run(host='0.0.0.0')