From 972eea3e44fbce03908b6f1639bbbb1faa612162 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Fri, 27 Nov 2020 04:35:39 +0100 Subject: [PATCH] remove hardcode bind --- requirements.txt | 3 ++- src/app.py | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 47e7d9c..96c9830 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,4 +7,5 @@ sentry-sdk[flask] py-healthcheck sqlalchemy flask-sqlalchemy -flask-cors \ No newline at end of file +flask-cors +requests \ No newline at end of file diff --git a/src/app.py b/src/app.py index 68b983e..430bf4c 100644 --- a/src/app.py +++ b/src/app.py @@ -70,6 +70,5 @@ def init_db(): if __name__ == "__main__": app.run( debug=bool(DEBUG), - host="0.0.0.0", port=int(PORT), )