kibana/CONTRIBUTING.md

72 lines
3.1 KiB
Markdown
Raw Normal View History

2014-09-20 04:14:05 +02:00
If you have a bugfix or new feature that you would like to contribute to Kibana, please **find or open an issue about it before you start working on it.** Talk about what you would like to do. It may be that somebody is already working on it, or that there are particular issues that you should know about before implementing the change.
We enjoy working with contributors to get their code accepted. There are many approaches to fixing a problem and it is important to find the best approach before writing too much code.
The process for contributing to any of the Elasticsearch repositories is similar.
### Sign the contributor license agreement
Please make sure you have signed the [Contributor License Agreement](http://www.elasticsearch.org/contributor-agreement/). We are not asking you to assign copyright to us, but to give us the right to distribute your code without restriction. We ask this of all contributors in order to assure our users of the origin and continuing existence of the code. You only need to sign the CLA once.
#### Development Environment Setup
2014-09-20 04:14:05 +02:00
- Install node.js (we recommend using [nvm](https://github.com/creationix/nvm))
2014-09-20 04:14:05 +02:00
```sh
## follow directions at https://github.com/creationix/nvm, then
nvm install 0.10
```
- Install ruby *1.9.3* (we recommend using [rbenv](https://github.com/sstephenson/rbenv))
- See [rbenv docs](https://github.com/sstephenson/rbenv#installation) for installation assistance
2014-12-29 22:22:23 +01:00
```sh
## install ruby and ruby-build using your local package manager (apt, brew, etc)
brew install rbenv ruby-build
```
- Run `rbenv init` and add `eval "$(rbenv init -)"` to your shell (ex. .bashrc/.bash_profile)
- Run `rbenv install` to install the required version
- Run `ruby -v` and make sure you are using 1.9.3
- Check the installation docs if you have issues getting the correct version
- Install bundler by running `gem install bundler`
2014-12-29 22:22:23 +01:00
- Install local gems by running `bundle`
2014-09-20 04:14:05 +02:00
- Install grunt and bower globally
2014-09-20 04:14:05 +02:00
```sh
npm install -g grunt-cli bower
```
- Install node, bower, and ruby dependencies
2014-09-20 04:14:05 +02:00
```sh
2014-12-29 22:22:23 +01:00
npm install && bower install && bundle
2014-09-20 04:14:05 +02:00
```
- Start the development server.
```sh
2014-10-29 18:03:36 +01:00
grunt dev # use the "--with-es" flag to install & start elasticsearch too
```
2014-12-08 17:52:24 +01:00
#### Testing and building
To ensure that your changes will not break other functionality, please run the test suite and build process before submitting your pull request.
Before running the tests you will need to install the projects dependencies as described below.
Once that is complete just run:
```sh
grunt test build
```
Distributable, built packages can be found in `target/` after the build completes.
2014-09-20 04:14:05 +02:00
### Submit a pull request
Push your local changes to your forked copy of the repository and submit a pull request. In the pull request, describe what your changes do and mention the number of the issue where discussion has taken place, eg “Closes #123″.
Then sit back and wait. There will probably be discussion about the pull request and, if any changes are needed, we would love to work with you to get your pull request merged into Kibana.