UNPKG

octopus-deploy

Version:

Node scripts to package up applications, create releases, and deploy with Octopus Deploy. This package leverages the Octopus Deploy REST API in order to deploy from Windows and non-Windows machines.

14 lines (9 loc) 177 B
'use strict' const client = require('../octopus-client') const findAll = async () => { const url = '/spaces/all' return client.get(url) } module.exports = { findAll }