"""Application entry point for Sneaky Klaus. This module creates the Flask application instance for use with gunicorn or the Flask development server. """ from src.app import create_app # Create app instance for gunicorn (production) app = create_app() if __name__ == "__main__": # Development server app.run(host="0.0.0.0", port=5000, debug=True)