05/31 Phase 7

This commit is contained in:
2026-05-31 17:04:18 -04:00
parent 46a604a73a
commit 84f48a7b4d
14 changed files with 1202 additions and 1 deletions
+2
View File
@@ -28,6 +28,7 @@ def create_app(config_name=None):
from app.routes.investments import investments_bp
from app.routes.ai import ai_bp
from app.routes.reports import reports_bp
from app.routes.settings import settings_bp
app.register_blueprint(auth_bp)
app.register_blueprint(dashboard_bp)
@@ -39,6 +40,7 @@ def create_app(config_name=None):
app.register_blueprint(investments_bp)
app.register_blueprint(ai_bp)
app.register_blueprint(reports_bp)
app.register_blueprint(settings_bp)
with app.app_context():
from app.models import (