diff --git a/main.py b/main.py index 042974a..e481dfa 100644 --- a/main.py +++ b/main.py @@ -1,5 +1,6 @@ from flask import Flask, request, make_response +import settings from helpers.events import events from processor import Processor @@ -36,4 +37,4 @@ def run(): def check_sentry(): a = 1 / 0 - app.run(host="0.0.0.0", port=8000) + app.run(host="0.0.0.0", port=8000, debug=settings.DEBUG)