Skip to content

Commit 19fcd49

Browse files
authored
Change Flask app to run on host 0.0.0.0 and port 8081
1 parent 12c4b46 commit 19fcd49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ def get_all():
6262
return jsonify(rows)
6363

6464
if __name__ == "__main__":
65-
app.run(debug=True)
65+
app.run(host="0.0.0.0", port=8081, debug=True)

0 commit comments

Comments
 (0)