From f0917effbc40ae7d88cf7c432ceb820d88bf98a7 Mon Sep 17 00:00:00 2001 From: Peter Benzoni Date: Thu, 29 Feb 2024 12:00:10 -0500 Subject: [PATCH] Running on web ports --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 7db95e1..f957545 100644 --- a/app.py +++ b/app.py @@ -1018,5 +1018,5 @@ def fetch_domains_from_github(url): if __name__ == "__main__": init_db() - app.run(debug=True) - \ No newline at end of file + app.run(host='0.0.0.0', port=80) +