We welcome you to join the development of ParaView ArcticViewer. This document will help you through the process.
Before You Start
Please follow the coding style:
- Follow Airbnb JavaScript Style Guide.
- Use soft-tabs with a two space indent.
- Don’t put commas first.
Workflow
- Fork kitware/arctic-viewer into your own Github account.
Clone the forked repository to your computer and install dependencies.
$ git clone https://github.com/<username>/arctic-viewer.git
$ cd arctic-viewer
$ npm install
$ npm install -g commitizenCreate a feature branch.
$ git checkout -b new_feature
Start hacking.
Use Commitizen for commit message
$ git add <newfiles>
$ git czPush the branch:
$ git push origin new_feature
Create a pull request and describe the change.
Updating Documentation
The ParaView ArcticViewer documentation is part of the code repository.
Reporting Issues
When you encounter some problems when using ParaView ArcticViewer, you may be able to find a solution in Troubleshooting or ask a question on our issues list or mailing list. If you can’t find the answer, please report the issue on GitHub.