dokku-app-ssh

1.0.1 • Public • Published

dokku-app-ssh

NPM Build Status

Creates a dokku ssh command string from host, command and appName strings. Handles edge cases for you.

Installation

npm install dokku-app-ssh

Usage

Require module

var dokkuAppSsh = require('dokku-app-ssh');

Use module passing host, command and app name

var host = 'dokku.mydomain.com';
var command = 'logs -t';
var appName = 'test-app';
 
var sshParams = dokkuAppSsh(host, command, appName);

sshParams is now the string...

ssh -T dokku@dokku.mydomain.com -- logs test-app -t

Dependencies (0)

    Dev Dependencies (3)

    Package Sidebar

    Install

    npm i dokku-app-ssh

    Weekly Downloads

    44

    Version

    1.0.1

    License

    MIT

    Last publish

    Collaborators

    • digitalsadhu