combat testing and polishing in the dev console, many bug fixes

This commit is contained in:
2025-11-27 20:37:53 -06:00
parent 94c4ca9e95
commit dd92cf5991
45 changed files with 8157 additions and 1106 deletions

View File

@@ -56,11 +56,13 @@ def create_app():
# Register blueprints
from .views.auth_views import auth_bp
from .views.character_views import character_bp
from .views.combat_views import combat_bp
from .views.game_views import game_bp
from .views.pages import pages_bp
app.register_blueprint(auth_bp)
app.register_blueprint(character_bp)
app.register_blueprint(combat_bp)
app.register_blueprint(game_bp)
app.register_blueprint(pages_bp)
@@ -109,6 +111,6 @@ def create_app():
logger.error("internal_server_error", error=str(error))
return render_template('errors/500.html'), 500
logger.info("flask_app_created", blueprints=["auth", "character", "game", "pages"])
logger.info("flask_app_created", blueprints=["auth", "character", "combat", "game", "pages"])
return app