Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
etahamad
/
flask
like
0
Runtime error
App
Files
Files
Community
etahamad
commited on
Jun 10, 2023
Commit
9e7432b
•
1 Parent(s):
54bf42b
add port
Browse files
Files changed (1)
hide
show
app.py
+2
-1
app.py
CHANGED
Viewed
@@ -23,4 +23,5 @@ def get_data():
23
return jsonify(data)
24
25
if __name__ == '__main__':
26
-
app.run()
23
return jsonify(data)
24
25
if __name__ == '__main__':
26
+
app.run(
host='0.0.0.0', port=7860
)
27
+