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
+2
View File
@@ -0,0 +1,2 @@
from flask_bootstrap import Bootstrap
bootstrap = Bootstrap()
+2
View File
@@ -0,0 +1,2 @@
from flask_wtf.csrf import CSRFProtect
csrf = CSRFProtect()
+2
View File
@@ -0,0 +1,2 @@
from flask_sqlalchemy import SQLAlchemy
db = SQLAlchemy()
+2
View File
@@ -0,0 +1,2 @@
from flask_login import LoginManager
login_manager = LoginManager()
+2
View File
@@ -0,0 +1,2 @@
from flask_mail import Mail
mail = Mail()