06/05 Optimize app: Add Plaid web hook, healthcheck

This commit is contained in:
2026-06-05 13:57:36 -04:00
parent 452374365c
commit 2f62417c9f
9 changed files with 449 additions and 44 deletions
+2
View File
@@ -99,6 +99,7 @@ def create_app(config_name=None):
)
logging.getLogger('app').info('Sentry initialised')
from app.routes.health import health_bp
from app.routes.auth import auth_bp
from app.routes.dashboard import dashboard_bp
from app.routes.accounts import accounts_bp
@@ -116,6 +117,7 @@ def create_app(config_name=None):
from app.routes.logs import logs_bp
from app.routes.bank_import import bank_import_bp
app.register_blueprint(health_bp)
app.register_blueprint(auth_bp)
app.register_blueprint(dashboard_bp)
app.register_blueprint(accounts_bp)