datamodel
Version:
Relational algebra compliant in-memory tabular data store
26 lines (22 loc) • 594 B
Markdown
# 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.
* Run test.
* Build the project.
* Send PR.
```sh
$ git clone https://github.com/chartshq/datamodel.git
$ cd datamodel
$ git checkout develop
$ git flow init
$ git flow feature start <your-feature-branch-name>
$ npm install
$ npm test
$ npm run build
```