Initial commit: Markov Economics Simulation App
This commit is contained in:
14
run.py
Normal file
14
run.py
Normal 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)
|
Reference in New Issue
Block a user