From bd93caa3752fe94b62fef9c088df2eecc85234b5 Mon Sep 17 00:00:00 2001 From: Andrew K Date: Fri, 9 Jan 2026 15:02:13 +0900 Subject: [PATCH] make sure flask server is able to be accessed from host, outside container --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index d75183d..a053b61 100644 --- a/app.py +++ b/app.py @@ -330,4 +330,4 @@ def download(code): flash('Invalid code! Check if you typed the correct code, and for one-time codes, make sure nobody else entered the code before you did.', 'error') return redirect(url_for('upload')) -app.run(debug=True, port=3133) +app.run(debug=True, port=3133, host='0.0.0.0')