#!/usr/bin/env python3 """ Main entry point for the Markov Economics Flask application. Demonstrates how capitalism "eats the world" using Markov chains. """ import os from app import create_app, socketio config_name = os.getenv('FLASK_CONFIG', 'development') app = create_app(config_name) if __name__ == '__main__': socketio.run(app, debug=True, host='0.0.0.0', port=5000)