Quick Start
Prerequisites
Section titled “Prerequisites”- Python 3.8+
- Node.js (optional, for plugins)
- Lua (optional, for plugins)
Installation
Section titled “Installation”Clone the repository:
git clone https://github.com/dmx3377/turbostar.gitcd turbostar- Define your processes in
manifest.json:
{ "services": [ { "name": "BACKEND", "command": "python backend.py", "ready_signal": "Server Running" }, { "name": "FRONTEND", "command": "npm start", "depends_on": "BACKEND" } ]}- Begin the script by running:
python turbostar.py