Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Latest commit

 

History

History
17 lines (13 loc) · 346 Bytes

digitalocean.md

File metadata and controls

17 lines (13 loc) · 346 Bytes

Using DigitalOcean with pkgcloud

Using Compute

DigitalOcean requires a client ID and API key.

var pkgcloud = require('pkgcloud');
var digitalocean = pkgcloud.compute.createClient({
  provider: 'digitalocean',
  clientId: '<client-id>',
  apiKey: '<api-key>'
});