"""
WSGI entry point for production deployment (e.g., with Gunicorn).
"""
import os
from app import create_app

# Create app with the appropriate configuration
config_name = os.environ.get('FLASK_ENV', 'production')
app = create_app(config_name)

if __name__ == '__main__':
    app.run()
