Rename create_app.py to app.py for Gunicorn command

This commit is contained in:
Xevion
2022-03-28 17:19:11 -05:00
parent e997d4f67e
commit 6dfed98ba3
6 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ from flask_login import login_required, login_user, logout_user, current_user
from werkzeug.security import check_password_hash, generate_password_hash
from .models import User
from .create_app import db
from .app import db
blueprint = Blueprint('auth', __name__)