This commit is contained in:
Silo
2026-02-20 16:52:22 +00:00
parent 578d35b965
commit c3ad189448
15 changed files with 957 additions and 1518 deletions

10
wsgi.py Normal file
View File

@@ -0,0 +1,10 @@
from app import app, db
from app.models import User
from app.network_utils import cleanup_network
cleanup_network()
@app.shell_context_processor
def make_shell_context():
return {'db': db, 'User': User}