Skip to content

Quick Start

  • Python 3.8+
  • Node.js (optional, for plugins)
  • Lua (optional, for plugins)

Clone the repository:

Terminal window
git clone https://github.com/dmx3377/turbostar.git
cd turbostar
  1. 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"
}
]
}
  1. Begin the script by running: python turbostar.py