Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 561 Bytes

CONTRIBUTING.md

File metadata and controls

24 lines (20 loc) · 561 Bytes

Contribution Guidelines

The new features and bug fixes are merged into develop branch. The master branch contains the latest stable release.

Please, try to follow:

  • Clone the repository.
  • Checkout develop branch.
  • Create feature or bug fixing branch using git flow
  • Install dependencies.
  • Add your new features or fixes.
  • Build the project.
  • Send PR.
$ git clone https://github.com/chartshq/muze.git
$ cd muze
$ git checkout develop
$ git flow init
$ git flow feature start <your-feature-branch-name>
$ npm install
$ npm run build