Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
labapawel
/
tictactoe
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Paweł Łaba
commited on
Dec 22, 2024
Commit
52eb98a
·
1 Parent(s):
c54e371
zmiany w index
Browse files
Files changed (1)
hide
show
app.py
+2
-1
app.py
CHANGED
Viewed
@@ -139,4 +139,5 @@ def get_status():
139
})
140
141
if __name__ == '__main__':
142
-
app.run(host='0.0.0.0',
port=7860)
139
})
140
141
if __name__ == '__main__':
142
+
import
uvicorn
143
+
uvicorn.run(app, host="0.0.0.0", port=7860)