05/31 Phase 4

This commit is contained in:
2026-05-31 16:40:59 -04:00
parent 1560041cdb
commit 9c846159ef
9 changed files with 925 additions and 1 deletions
+2
View File
@@ -25,6 +25,7 @@ def create_app(config_name=None):
from app.routes.transactions import transactions_bp
from app.routes.budgets import budgets_bp
from app.routes.goals import goals_bp
from app.routes.investments import investments_bp
app.register_blueprint(auth_bp)
app.register_blueprint(dashboard_bp)
@@ -33,6 +34,7 @@ def create_app(config_name=None):
app.register_blueprint(transactions_bp)
app.register_blueprint(budgets_bp)
app.register_blueprint(goals_bp)
app.register_blueprint(investments_bp)
with app.app_context():
from app.models import (