MeiliSearch/CONTRIBUTING.md

81 lines
3.8 KiB
Markdown
Raw Normal View History

2020-06-03 13:31:21 +02:00
# Contributing
2021-09-27 14:13:50 +02:00
First, thank you for contributing to MeiliSearch! The goal of this document is to provide everything you need to start contributing to MeiliSearch.
- [Assumptions](#assumptions)
- [How to Contribute](#how-to-contribute)
- [Development Workflow](#development-workflow)
- [Git Guidelines](#git-guidelines)
2020-06-03 13:31:21 +02:00
## Assumptions
2021-09-27 14:13:50 +02:00
1. **You're familiar with [Github](https://github.com) and [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests)(PR) workflow.**
2. **You've read the MeiliSearch [documentation](https://docs.meilisearch.com).**
2021-02-04 15:56:06 +01:00
3. **You know about the [MeiliSearch community](https://docs.meilisearch.com/learn/what_is_meilisearch/contact.html).
2020-06-03 13:31:21 +02:00
Please use this for help.**
2021-09-27 14:13:50 +02:00
## How to Contribute
2020-06-03 13:31:21 +02:00
1. Ensure your change has an issue! Find an
[existing issue](https://github.com/meilisearch/meilisearch/issues/) or [open a new issue](https://github.com/meilisearch/meilisearch/issues/new).
* This is where you can get a feel if the change will be accepted or not.
2021-09-27 14:13:50 +02:00
2. Once approved, [fork the MeiliSearch repository](https://help.github.com/en/github/getting-started-with-github/fork-a-repo) in your own Github account.
2020-06-03 13:31:21 +02:00
3. [Create a new Git branch](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository)
2021-09-27 14:13:50 +02:00
4. Review the [Development Workflow](#development-workflow) section that describes the steps to maintain the repository.
5. Make your changes on your branch.
6. [Submit the branch as a pull request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork) pointing to the `main` branch of the main MeiliSearch repository. A maintainer should comment and/or review your Pull Request within a few days. Although depending on the circumstances, it may take longer.r.
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
## Development Workflow
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
### Setup and run MeiliSearch
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
```bash
cargo run
```
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
We recommend using the `--release` flag to test the full performance of MeiliSearch.
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
### Test
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
```bash
cargo test
```
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
If you get a "Too many open size" error you might want to increase the open file limit using this command:
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
```bash
ulimit -Sn 3000
```
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
## Git Guidelines
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
### Git Branches
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
All changes must be made in a branch and submitted as PR.
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
We do not enforce any branch naming style, but please use something descriptive of your changes.
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
### Git Commits
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
As minimal requirements, your commit message should:
- be capitalized
- not finish by a dot or any other punctuation character (!,?)
- start with a verb so that we can read your commit message this way: "This commit will ...", where "..." is the commit message.
e.g.: "Fix the home page button" or "Add more tests for create_index method"
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
We don't follow any other convention, but if you want to use one, we recommend [this one](https://chris.beams.io/posts/git-commit/).
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
### Github Pull Requests
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
Some notes on GitHub PRs:
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
- All PRs must be reviewed and approved by at least one maintainer.
- The PR title should be accurate and descriptive of the changes.
- [Convert your PR as a draft](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request) if your changes are a work in progress: no one will review it until you pass your PR as ready for review.<br>
The draft PR can be very useful if you want to show that you are working on something and make your work visible.
- The branch related to the PR must be **up-to-date with `main`** before merging. Fortunately, this project [Bors](https://github.com/bors-ng/bors-ng) to automatically enforce this requirement without the PR author having to do it manually..
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
<hr>
2020-06-03 13:31:21 +02:00
2021-09-27 14:13:50 +02:00
Thank you again for reading this through, we can not wait to begin to work with you if you made your way through this contributing guide ❤️