Process Types & Dynos
Scale your app’s web and worker processes.
Process Types
Section titled “Process Types”| Type | Purpose |
|---|---|
| web | Handles HTTP requests |
| worker | Runs background jobs |
Process types are defined in your Procfile:
web: bundle exec puma -C config/puma.rbworker: bundle exec sidekiqView Current State
Section titled “View Current State”Go to your app → Scaling tab.
wokku ps my-appcurl https://wokku.cloud/api/v1/apps/my-app/ps \ -H "Authorization: Bearer $TOKEN"Ask Claude: “Show the process state for my-app”
Tap your app → Scaling tab.
Go to Scaling → adjust the dyno count → Save.
wokku ps:scale my-app web=2 worker=1curl -X PUT https://wokku.cloud/api/v1/apps/my-app/ps \ -H "Authorization: Bearer $TOKEN" \ -d '{"scaling": {"web": 2, "worker": 1}}'Ask Claude: “Scale my-app to 2 web dynos and 1 worker”
Tap your app → Scaling → adjust counts → Save.