Everything you need to start with Greybull. From first deploy to full production setup.
From zero to a running instance in three steps.
Dashboard → Compute → Create. Pick a plan and an OS, add your SSH key.curl https://dash.greybull.nl/api/v1/compute \
-H "X-API-Key: $API_KEY"In-depth guides per product line.
All Greybull services are available via a RESTful API. Authentication is handled via API tokens that you create in the dashboard. DNS and domains can also be managed from your terminal with the greybull CLI.
curl -H "X-API-Key: $API_KEY" \
https://dash.greybull.nl/api/v1/compute{
"data": [{
"vmId": 101,
"name": "web-01",
"status": "running",
"cpu": 4,
"memory": 8192
}],
"meta": { "total": 1 }
}npx greybull login
npx greybull dns zones
npx greybull dns add example.nl A www 203.0.113.20
npx greybull domains check mycompany --tlds nl,com