Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 1.69 KB

CONTRIBUTING.md

File metadata and controls

46 lines (29 loc) · 1.69 KB

Contributing to ARLAS-wui

ARLAS-wui is an open source project and there are many ways to contribute.

Bug reports

If you think you have found a bug in ARLAS-wui, first make sure that it has not been already addressed in our issues list.

If not, provide as much information as you can to help us reproduce your bug :

  • ARLAS-wui version and configuration file used
  • Angular version used

Keep in mind that we will fix your problem faster if we can easily reproduce it.

Feature requests

If you think ARLAS-wui lacks a feature, do not hesitate to open an issue on our issues list on GitHub which describes what you need, why you need it, and how it should work.

Contributing code and documentation changes

If you want to submit a bugfix or a feature implementation, first find or open an issue about it on our issues list

Prerequisites

ARLAS-wui runs with Angular and is built/packaged with yarn.

Fork and clone the repository

You will need to fork the main ARLAS-wui repository and clone it to your local machine. See github help page for help.

Submitting your changes

When your code is ready, you will have to :

  • rebase your repository.
  • run ng lint, ng test, ng build -prod -aot --base-href=''
  • submit a pull request with a proper title and a mention to the corresponding issue (eg "fix #1234").
  • never force push your branch after submitting, if you need to sync with official repository, you should better merge master into your branch.