AutomataSimulator/
├── server.py ← Python backend (run this)
├── index.html ← Frontend (open this in browser)
└── requirements.txt ← Python packages needed
File → Open Folder → select AutomataSimulator
Press: Ctrl + ` (backtick key, top-left of keyboard)
First time only (installs packages):
pip install flask flask-cors
Start the server:
python server.py
You will see:
✅ Automata Simulator Backend Running!
📡 API: http://localhost:5000
🌐 Open frontend/index.html in your browser
Double-click index.html to open it in your browser. OR right-click index.html → Open with → your browser.
That's it! The app is now running.
Press Ctrl + C in the terminal.