Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -36,4 +36,6 @@ def index():
|
|
36 |
return render_template('./index.html')
|
37 |
|
38 |
if __name__ == '__main__':
|
39 |
-
|
|
|
|
|
|
36 |
return render_template('./index.html')
|
37 |
|
38 |
if __name__ == '__main__':
|
39 |
+
import uvicorn
|
40 |
+
uvicorn.run(app, host="0.0.0.0", port=7860, debug=True)
|
41 |
+
|