Fixed database connection issue

This commit is contained in:
2022-06-11 15:16:35 +01:00
parent eac9ee7ab1
commit 625ef8883b
11 changed files with 19 additions and 15 deletions

View File

View File

@ -0,0 +1,2 @@
from flask_bootstrap import Bootstrap
bootstrap = Bootstrap()

View File

@ -0,0 +1,2 @@
from flask_wtf.csrf import CSRFProtect
csrf = CSRFProtect()

View File

@ -0,0 +1,2 @@
from flask_sqlalchemy import SQLAlchemy
db = SQLAlchemy()

View File

@ -0,0 +1,2 @@
from flask_login import LoginManager
login_manager = LoginManager()

View File

@ -0,0 +1,2 @@
from flask_mail import Mail
mail = Mail()