(feat): Basic user auth

This commit is contained in:
Blake Ridgway 2024-12-17 14:23:38 -06:00
parent e5976d3c8d
commit de460fbcbc
6 changed files with 90 additions and 9 deletions

5
models/__init__.py Normal file
View file

@ -0,0 +1,5 @@
from flask_sqlalchemy import SQLAlchemy
from flask_bcrypt import Bcrypt
db = SQLAlchemy()
bcrypt = Bcrypt()