disable debug config for flask
This commit is contained in:
parent
2b9971ffc5
commit
03595c3682
1 changed files with 1 additions and 1 deletions
|
@ -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", "")
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue