05/31 Phase 6

This commit is contained in:
2026-05-31 16:55:43 -04:00
parent b3d495e57c
commit 46a604a73a
8 changed files with 1172 additions and 1 deletions
+2
View File
@@ -27,6 +27,7 @@ def create_app(config_name=None):
from app.routes.goals import goals_bp
from app.routes.investments import investments_bp
from app.routes.ai import ai_bp
from app.routes.reports import reports_bp
app.register_blueprint(auth_bp)
app.register_blueprint(dashboard_bp)
@@ -37,6 +38,7 @@ def create_app(config_name=None):
app.register_blueprint(goals_bp)
app.register_blueprint(investments_bp)
app.register_blueprint(ai_bp)
app.register_blueprint(reports_bp)
with app.app_context():
from app.models import (