Restart / Stop / Start
Manage your app’s running state.
Restart
Section titled “Restart”Restarts all processes. Use after config changes or to recover from issues.
Go to your app and click Restart.
wokku ps:restart my-appcurl -X POST https://wokku.cloud/api/v1/apps/my-app/restart \ -H "Authorization: Bearer $TOKEN"Ask Claude: “Restart my-app”
Tap your app → Restart.
Stops all processes. The app becomes inaccessible.
Go to your app → Stop App.
wokku ps:stop my-appcurl -X POST https://wokku.cloud/api/v1/apps/my-app/stop \ -H "Authorization: Bearer $TOKEN"Ask Claude: “Stop my-app”
Tap your app → Stop.
Starts a previously stopped app.
Go to your app and click Start.
wokku ps:start my-appcurl -X POST https://wokku.cloud/api/v1/apps/my-app/start \ -H "Authorization: Bearer $TOKEN"Ask Claude: “Start my-app”
Tap your app → Start.