getting some ui and index route going

This commit is contained in:
2026-01-10 19:04:48 -07:00
parent 8e7512965c
commit 196873aac9
7 changed files with 133 additions and 0 deletions

View File

@@ -26,4 +26,8 @@ def create_app(test_config=None):
from . import db
db.init_app(app)
from . import weather
app.register_blueprint(weather.bp)
app.add_url_rule('/', endpoint='index')
return app