05/31 Phase 5

This commit is contained in:
2026-05-31 16:49:18 -04:00
parent 9c846159ef
commit b3d495e57c
9 changed files with 793 additions and 2 deletions
+2
View File
@@ -26,6 +26,7 @@ def create_app(config_name=None):
from app.routes.budgets import budgets_bp
from app.routes.goals import goals_bp
from app.routes.investments import investments_bp
from app.routes.ai import ai_bp
app.register_blueprint(auth_bp)
app.register_blueprint(dashboard_bp)
@@ -35,6 +36,7 @@ def create_app(config_name=None):
app.register_blueprint(budgets_bp)
app.register_blueprint(goals_bp)
app.register_blueprint(investments_bp)
app.register_blueprint(ai_bp)
with app.app_context():
from app.models import (