#7 Basic flask app. Setup routes, DB, and made a user model. Made initial migrations

This commit is contained in:
2023-03-16 19:39:58 -04:00
parent dcc172f17a
commit 73bdc75095
14 changed files with 359 additions and 0 deletions

11
backend/main.py Normal file
View File

@@ -0,0 +1,11 @@
import dotenv
dotenv.load_dotenv()
from app import create_app, db
app = create_app()
@app.shell_context_processor
def make_shell_context():
return {}