""" Gunicorn WSGI entry point. DB initialization + upload folder setup. """ import os os.makedirs(os.path.join(os.path.dirname(__file__), "uploads"), exist_ok=True) from app import app, db, seed_admin with app.app_context(): db.create_all() seed_admin()