dokku-git-remote-parser

v0.0.1

dokku-git-remote-parser

NPM Build Status

Retrieves dokku host and app name from a directory by reading and parsing the git remotes

Installation

npm install dokku-git-remote-parser

Usage

Require module

var dokkuGitRemoteParser = require('dokku-git-remote-parser');

use module on current directory

dokkuGitRemoteParser(function (err, host, appName) {
  // err: Error object or null
  //   eg. err.message -> "No Dokku app detected"
  // host: string or undefined eg. "myhost.com"
  // appName: string or undefined eg. "my-app"
})

user module on a specified directory

dokkuGitRemoteParser('./path/to/dir', function (err, host, appName) {

})

Metadata

  • MIT
  • Whatever
  • Richard Walker
  • released 8/2/2015

Downloads

Maintainers