lots of progress on input processing

This commit is contained in:
Bryce
2025-08-03 10:09:53 -07:00
parent 97545d89d2
commit b0952aee58
29 changed files with 1172 additions and 32 deletions

16
app/__init__.py Normal file
View File

@@ -0,0 +1,16 @@
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
from config import config
db = SQLAlchemy()
def create_app(config_name='default'):
app = Flask(__name__)
app.config.from_object(config[config_name])
db.init_app(app)
from app.routes import main
app.register_blueprint(main)
return app