wsgi.py 237 B

12345678910
  1. """WSGI entry point for production deployment."""
  2. import os
  3. from app import create_app
  4. # Use production config
  5. os.environ.setdefault('FLASK_CONFIG', 'production')
  6. app = create_app('production')
  7. if __name__ == '__main__':
  8. app.run()