also set up the config for hacked app w/ burnettk

This commit is contained in:
jasquat 2022-10-18 17:29:31 -04:00
parent 045fe9c93a
commit 57ba8e0c82
1 changed files with 1 additions and 0 deletions

View File

@ -132,6 +132,7 @@ def get_hacked_up_app_for_script() -> flask.app.Flask:
else: else:
raise Exception(f"Could not find {full_process_model_path}") raise Exception(f"Could not find {full_process_model_path}")
app = create_app() app = create_app()
setup_config(app)
configure_sentry(app) configure_sentry(app)
return app return app