Skip to content
This repository has been archived by the owner on Mar 16, 2020. It is now read-only.

balena-io-modules/resin-vcs

Repository files navigation

resin-vcs

npm version dependencies Build Status Build status

Join our online chat at Gitter chat

A layer between Resin.io and VCS.

Role

The intention of this module is to provide an extensible layer between Resin.io and version control systems, such as git.

Systems

Currently this module only supports git, but will be extended in the future.

Installation

Install resin-vcs by running:

$ npm install --save resin-vcs

Documentation

vcs.initialize(directory) ⇒ Promise

Kind: static method of vcs
Summary: Initialize a directory with git
Access: public

Param Type Description
directory String directory

Example

vcs.initialize('foo/bar')

vcs.clone(url, directory) ⇒ Promise

Kind: static method of vcs
Summary: Clone a git repository to a directory
Access: public

Param Type Description
url String repository url
directory String directory

Example

vcs.clone('https://github.com/resin-io/resin-vcs.git', 'foo/bar')

vcs.associate(directory, url) ⇒ Promise

Kind: static method of vcs
Summary: Add a resin remote to a git repository
Access: public

Param Type Description
directory String directory
url String repository url

Example

vcs.associate('foo/bar', 'jviotti@git.resin.io:jviotti/foobar.git')

vcs.getApplicationName(directory) ⇒ Promise.<(String|undefined)>

Kind: static method of vcs
Summary: Get the associated application name from a repository
Returns: Promise.<(String|undefined)> - application name
Access: public

Param Type Description
directory String directory

Example

vcs.getApplicationName('foo/bar').then (applicationName) ->
	if applicationName?
		console.log(applicationName)

Support

If you're having any problem, please raise an issue on GitHub and the Resin.io team will be happy to help.

Tests

Run the test suite by doing:

$ gulp test

Contribute

Before submitting a PR, please make sure that you include tests, and that coffeelint runs without any warning:

$ gulp lint

License

The project is licensed under the Apache 2.0 license.