From 1d1c2aac9fde64c2296dcedbb6a5cee63741e017 Mon Sep 17 00:00:00 2001 From: Swapnil Date: Wed, 24 Jan 2024 19:11:56 +0530 Subject: [PATCH] fix: app - expose on 0.0.0.0 --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 4dc3538..1d65456 100644 --- a/app/main.py +++ b/app/main.py @@ -91,4 +91,4 @@ def save_tokens(access_token, refresh_token, expiration_seconds): response.raise_for_status() if __name__ == '__main__': - app.run(debug=True, port=5000) \ No newline at end of file + app.run(host='0.0.0.0', debug=True, port=5000) \ No newline at end of file