"""WSGI entry point for production (gunicorn). Usage: gunicorn -w 4 -b 0.0.0.0:5001 wsgi:app """ import os import sys sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) from app import create_app # noqa: E402 app = create_app()