From 21645d5bf7d7f83fbd33142ef826060d2b477841 Mon Sep 17 00:00:00 2001 From: Arslaan <91215459+Arslaan-Thanedar@users.noreply.github.com> Date: Sat, 30 Mar 2024 02:12:42 +0530 Subject: [PATCH] Update routes.py --- routes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/routes.py b/routes.py index b4377d8..99f5d41 100644 --- a/routes.py +++ b/routes.py @@ -1,3 +1,4 @@ +import os from flask import Flask, render_template app = Flask(__name__) @@ -16,4 +17,4 @@ def myth(): return render_template('myth.html', the_title='Tiger in Myth and Legend') if __name__ == '__main__': - app.run(debug=True) + app.run(host="0.0.0.0", port=8080)