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