1
0
forked from finn/site
This commit is contained in:
2024-08-01 06:35:28 -07:00
parent 76b20a3b38
commit 3162b662b5
14 changed files with 342 additions and 4 deletions

View File

@@ -1,8 +1,12 @@
from flask import Flask
from config import Config
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
app = Flask(__name__)
app.config.from_object(Config)
db = SQLAlchemy(app)
migrate = Migrate(app, db)
from app import routes
from app import routes, models