You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,25 @@
2
2
3
3
First of all, thank you for contributing to Meilisearch! The goal of this document is to provide everything you need to know in order to contribute to Meilisearch and its different integrations.
4
4
5
+
-[Hacktoberfest](#hacktoberfest-2022)
5
6
-[Assumptions](#assumptions)
6
7
-[How to Contribute](#how-to-contribute)
7
8
-[Development Workflow](#development-workflow)
8
9
-[Git Guidelines](#git-guidelines)
9
10
-[Release Process (for internal team only)](#release-process-for-internal-team-only)
Thanks so much for participating with Meilisearch this year!
17
+
18
+
1. We will follow the quality standards set by the organizers of Hacktoberfest (see detail on their [website](https://hacktoberfest.digitalocean.com/resources/qualitystandards)). Our reviewers will not consider any PR that doesn’t match that standard.
19
+
2. PRs reviews will take place from Monday to Thursday, during usual working hours, CEST time. If you submit outside of these hours, there’s no need to panic; we will get around to your contribution.
20
+
3. There will be no issue assignment as we don’t want people to ask to be assigned specific issues and never return, discouraging the volunteer contributors from opening a PR to fix this issue. We take the liberty to choose the PR that best fixes the issue, so we encourage you to get to it as soon as possible and do your best!
21
+
22
+
You can check out the longer, more complete guideline documentation [here](https://github.com/meilisearch/.github/blob/main/Hacktoberfest_2022_contributors_guidelines.md).
23
+
11
24
## Assumptions
12
25
13
26
1.**You're familiar with [GitHub](https://github.com) and the [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests)(PR) workflow.**
@@ -32,7 +45,7 @@ You can set up your local environment natively or using `docker`, check out the
32
45
33
46
Example of running all the checks with docker:
34
47
```bash
35
-
docker-compose run --rm package bash -c "pipenv run mypy meilisearch && pipenv run pylint meilisearch && pipenv run pytest tests"
48
+
docker-compose run --rm package bash -c "pipenv install --dev && pipenv run mypy meilisearch && pipenv run pylint meilisearch && pipenv run pytest tests"
Copy file name to clipboardExpand all lines: README.md
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -28,20 +28,29 @@
28
28
29
29
## Table of Contents <!-- omit in toc -->
30
30
31
+
-[🎃 Hacktoberfest](#-hacktoberfest)
31
32
-[📖 Documentation](#-documentation)
32
33
-[🔧 Installation](#-installation)
33
34
-[🚀 Getting Started](#-getting-started)
34
35
-[🤖 Compatibility with Meilisearch](#-compatibility-with-meilisearch)
35
36
-[💡 Learn More](#-learn-more)
36
37
-[⚙️ Development Workflow and Contributing](#️-development-workflow-and-contributing)
37
38
39
+
## 🎃 Hacktoberfest
40
+
41
+
It’s Hacktoberfest 2022 @Meilisearch
42
+
43
+
[Hacktoberfest](https://hacktoberfest.com/) is a celebration of the open-source community. This year, and for the third time in a row, Meilisearch is participating in this fantastic event.
44
+
45
+
You’d like to contribute? Don’t hesitate to check out our [contributing guidelines](./CONTRIBUTING.md).
46
+
38
47
## 📖 Documentation
39
48
40
49
See our [Documentation](https://docs.meilisearch.com/learn/tutorials/getting_started.html) or our [API References](https://docs.meilisearch.com/reference/api/).
0 commit comments