Spaces:
Sleeping
Sleeping
Vargock
commited on
Commit
·
d5a3b1a
1
Parent(s):
c4008db
changed app.run to not be local
Browse files
app.py
CHANGED
|
@@ -39,4 +39,4 @@ def history():
|
|
| 39 |
return render_template("history.html", notes=notes)
|
| 40 |
|
| 41 |
if __name__ == "__main__":
|
| 42 |
-
app.run(debug=
|
|
|
|
| 39 |
return render_template("history.html", notes=notes)
|
| 40 |
|
| 41 |
if __name__ == "__main__":
|
| 42 |
+
app.run(host="0.0.0.0", port=7860, debug=False)
|