Initial commit: Markov Economics Simulation App

This commit is contained in:
2025-08-24 19:12:50 +02:00
commit 26c82959a2
28 changed files with 3646 additions and 0 deletions

14
run.py Normal file
View File

@@ -0,0 +1,14 @@
#!/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)