1
0
Fork 0

disable debug config for flask

This commit is contained in:
Mikhail Goncharov 2022-02-09 17:13:26 +01:00
parent 2b9971ffc5
commit 03595c3682

View file

@ -5,7 +5,7 @@ from urllib.parse import urlparse, parse_qs
import json
app = flask.Flask(__name__)
app.config["DEBUG"] = True # TODO: make production
app.config["DEBUG"] = False
buildkite_api_token = os.getenv("BUILDKITE_API_TOKEN", "")