dokku-git-remote-parser

1.1.2 • Public • Published

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) {
 
})

Readme

Keywords

none

Package Sidebar

Install

npm i dokku-git-remote-parser

Weekly Downloads

45

Version

1.1.2

License

MIT

Last publish

Collaborators

  • digitalsadhu