Bootstrap & bootstrap theme startup

This commit is contained in:
Josako
2024-04-24 10:44:28 +02:00
parent 60bc75010d
commit ca77f55a7f
4 changed files with 88 additions and 15 deletions

View File

@@ -1,12 +1,14 @@
from flask_sqlalchemy import SQLAlchemy
from sqlalchemy.orm import DeclarativeBase
from flask_migrate import Migrate
from flask_bcrypt import Bcrypt
from flask_bootstrap import Bootstrap
from flask_jwt_extended import JWTManager
# Create extensions
db = SQLAlchemy()
migrate = Migrate()
bcrypt = Bcrypt()
bootstrap = Bootstrap()
jwt = JWTManager()
jwt = JWTManager()