This commit is contained in:
Rich
2021-09-03 17:30:26 +01:00
parent ce645d40a1
commit 78bf257edd
2 changed files with 39 additions and 2 deletions

View File

@@ -3,6 +3,7 @@ from config import Config
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
from flask_login import LoginManager
from app.network_utils import cleanup_network
app = Flask(__name__)
app.config.from_object(Config)
@@ -11,4 +12,6 @@ migrate = Migrate(app, db)
login = LoginManager(app)
login.login_view = "login"
cleanup_network()
from app import routes2, models