API reference and example calls for runtime management.
GET /api/runtime/statusPOST /api/runtime/startPOST /api/runtime/stopPOST /api/runtime/restartPOST /api/runtime/deploy{ "projectName": "my-app", "gitRef": "main" }curl -s http://localhost:3000/api/runtime/status | jq
curl -X POST http://localhost:3000/api/runtime/start
curl -X POST http://localhost:3000/api/runtime/restart
curl -X POST http://localhost:3000/api/runtime/deploy -H "Content-Type: application/json" -d '{"projectName":"wrld-hosting","gitRef":"main"}'