05/31 Teller.io connection

This commit is contained in:
2026-05-31 22:40:02 -04:00
parent 67ed91d94c
commit 1d7ae3caf0
12 changed files with 1055 additions and 0 deletions
+3
View File
@@ -29,6 +29,7 @@ def create_app(config_name=None):
from app.routes.ai import ai_bp
from app.routes.reports import reports_bp
from app.routes.settings import settings_bp
from app.routes.teller import teller_bp
app.register_blueprint(auth_bp)
app.register_blueprint(dashboard_bp)
@@ -41,6 +42,7 @@ def create_app(config_name=None):
app.register_blueprint(ai_bp)
app.register_blueprint(reports_bp)
app.register_blueprint(settings_bp)
app.register_blueprint(teller_bp)
with app.app_context():
from app.models import (
@@ -49,6 +51,7 @@ def create_app(config_name=None):
Investment, InvestmentTransaction, NetWorthSnapshot,
AiInsight, FxRate
)
from app.models.teller_enrollment import TellerEnrollment, TellerAccount
app.jinja_env.globals['format_currency'] = format_currency
app.jinja_env.globals['format_percent'] = format_percent