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
533: Changes related to the rebranding r=bidoubiwa a=meili-bot
_This PR is auto-generated._
- [X] Change the name `MeiliSearch` to `Meilisearch` in README and CONTRIBUTING.
- [x] ⚠️ Ensure the bot did not update part you don’t want it to update, especially in the code examples in the Getting started.
- [x] Please, ensure there is no other "MeiliSearch". For example, in the comments or in the tests name.
- [x] Put the new logo on the README if needed.
Co-authored-by: meili-bot <[email protected]>
Co-authored-by: Charlotte Vermandel <[email protected]>
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Contributing <!-- omit in TOC -->
2
2
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.
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
5
-[Assumptions](#assumptions)
6
6
-[How to Contribute](#how-to-contribute)
@@ -11,8 +11,8 @@ First of all, thank you for contributing to MeiliSearch! The goal of this docume
11
11
## Assumptions
12
12
13
13
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.**
14
-
2.**You've read the MeiliSearch[documentation](https://docs.meilisearch.com) and the [README](/README.md).**
15
-
3.**You know about the [MeiliSearch community](https://docs.meilisearch.com/learn/what_is_meilisearch/contact.html). Please use this for help.**
14
+
2.**You've read the Meilisearch[documentation](https://docs.meilisearch.com) and the [README](/README.md).**
15
+
3.**You know about the [Meilisearch community](https://docs.meilisearch.com/learn/what_is_meilisearch/contact.html). Please use this for help.**
16
16
17
17
## How to Contribute
18
18
@@ -64,10 +64,10 @@ yarn format:scss
64
64
65
65
## Playground
66
66
67
-
We provide a playground in this repository that hot-reloads on change. The playground points to a remote MeiliSearch server that contains the scraped [documentation of MeiliSearch](https://docs.meilisearch.com/).
67
+
We provide a playground in this repository that hot-reloads on change. The playground points to a remote Meilisearch server that contains the scraped [documentation of Meilisearch](https://docs.meilisearch.com/).
68
68
You can play arround with the options and or just try out the search.
69
69
70
-
For example, type `create an indxe` to experience MeiliSearch[typo tolerance](https://docs.meilisearch.com/reference/under_the_hood/typotolerance.html).
70
+
For example, type `create an indxe` to experience Meilisearch[typo tolerance](https://docs.meilisearch.com/reference/under_the_hood/typotolerance.html).
71
71
72
72
To launch and open the playground:
73
73
@@ -116,7 +116,7 @@ Some notes on GitHub PRs:
116
116
117
117
## Release Process (for internal team only)
118
118
119
-
MeiliSearch tools follow the [Semantic Versioning Convention](https://semver.org/).
119
+
Meilisearch tools follow the [Semantic Versioning Convention](https://semver.org/).
120
120
121
121
### Automation to Rebase and Merge the PRs <!-- omit in TOC -->
💡 If you use VuePress for your website, you should check out our [VuePress plugin for MeiliSearch](https://github.com/meilisearch/vuepress-plugin-meilisearch).
29
+
💡 If you use VuePress for your website, you should check out our [VuePress plugin for Meilisearch](https://github.com/meilisearch/vuepress-plugin-meilisearch).
30
30
31
31
## Table of Contents <!-- omit in toc -->
32
32
33
33
-[🔧 Installation](#-installation)
34
34
-[🎬 Getting Started](#-getting-started)
35
35
-[🎨 Customization](#customization)
36
-
-[🤖 Compatibility with MeiliSearch](#compatibility-with-meilisearch)
36
+
-[🤖 Compatibility with Meilisearch](#compatibility-with-meilisearch)
37
37
-[⚙️ Development Workflow and Contributing](#development-workflow-and-contributing)
38
38
-[🥇 Credits](#credits)
39
39
@@ -57,25 +57,25 @@ Add the following script into your `HTML` file:
There are many easy ways to [download and run a MeiliSearch instance](https://docs.meilisearch.com/reference/features/installation.html#download-and-launch).
62
+
There are many easy ways to [download and run a Meilisearch instance](https://docs.meilisearch.com/reference/features/installation.html#download-and-launch).
63
63
64
64
For example, using the `curl` command in [your Terminal](https://itconnect.uw.edu/learn/workshops/online-tutorials/web-publishing/what-is-a-terminal/):
65
65
66
66
```bash
67
-
# Install MeiliSearch
67
+
# Install Meilisearch
68
68
curl -L https://install.meilisearch.com | sh
69
69
70
-
# Launch MeiliSearch
70
+
# Launch Meilisearch
71
71
./meilisearch --master-key=masterKey
72
72
```
73
73
74
-
NB: you can also download MeiliSearch from **Homebrew** or **APT** or even run it using **Docker**.
74
+
NB: you can also download Meilisearch from **Homebrew** or **APT** or even run it using **Docker**.
75
75
76
76
### Index your data <!-- omit in toc -->
77
77
78
-
The goal of this library is to provide a front-end search bar into your own documentation. To make that possible, you need to gather your website content in advance, and index it in a MeiliSearch instance.
78
+
The goal of this library is to provide a front-end search bar into your own documentation. To make that possible, you need to gather your website content in advance, and index it in a Meilisearch instance.
79
79
80
80
Luckily, we provide all the tools that you need, and can help you through the whole process, if you follow [this guide](https://docs.meilisearch.com/create/how_to/search_bar_for_docs.html) 🚀
81
81
@@ -85,7 +85,7 @@ Note: If you want to try out `docs-searchbar.js` as a first introduction, [try o
85
85
86
86
We recommend using the [`docs-scraper` tool](https://github.com/meilisearch/docs-scraper) to scrape your website, but this is not mandatory.
87
87
88
-
If you already have your own scraper but you still want to use MeiliSearch and `docs-searchbar.js`, check out [this discussion](https://github.com/meilisearch/docs-searchbar.js/issues/40).
88
+
If you already have your own scraper but you still want to use Meilisearch and `docs-searchbar.js`, check out [this discussion](https://github.com/meilisearch/docs-searchbar.js/issues/40).
89
89
90
90
91
91
### Getting Started
@@ -139,14 +139,14 @@ Add the following code to one of your `HTML` files.
139
139
</html>
140
140
```
141
141
142
-
The `hostUrl` and the `apiKey` (_optional_) fields are the credentials of your MeiliSearch instance.<br>
143
-
`indexUid` is the index identifier in your MeiliSearch instance in which your website content is stored.<br>
142
+
The `hostUrl` and the `apiKey` (_optional_) fields are the credentials of your Meilisearch instance.<br>
143
+
`indexUid` is the index identifier in your Meilisearch instance in which your website content is stored.<br>
144
144
`inputSelector` is the `id` attribute of the HTML search input tag.
145
145
146
146
_Your documentation content is not indexed yet? Check out [this tutorial](https://docs.meilisearch.com/create/how_to/search_bar_for_docs.html)._
147
147
148
-
**WARNING: We recommend providing the MeiliSearch public key, which is enough to perform search requests.<br>
149
-
Read more about [MeiliSearch authentication](https://docs.meilisearch.com/reference/features/authentication.html).**
148
+
**WARNING: We recommend providing the Meilisearch public key, which is enough to perform search requests.<br>
149
+
Read more about [Meilisearch authentication](https://docs.meilisearch.com/reference/features/authentication.html).**
150
150
151
151
### Styling
152
152
@@ -180,11 +180,11 @@ When calling the `docsSearchBar` method, you can add optional fields:
180
180
181
181
#### `queryHook`<!-- omit in toc -->
182
182
183
-
`queryHook` takes a callback function as value. This function will be called on every keystroke to transform the typed keywords before querying MeiliSearch. By default, it does not do anything, but it is the perfect place for you to add some preprocessing or custom functionality.
183
+
`queryHook` takes a callback function as value. This function will be called on every keystroke to transform the typed keywords before querying Meilisearch. By default, it does not do anything, but it is the perfect place for you to add some preprocessing or custom functionality.
184
184
185
185
#### `transformData`<!-- omit in toc -->
186
186
187
-
`transformData` takes a callback function as value. This function will be called on every hit before displaying them. By default, it does not do anything, but it lets you add any post-processing around the data you received from MeiliSearch.
187
+
`transformData` takes a callback function as value. This function will be called on every hit before displaying them. By default, it does not do anything, but it lets you add any post-processing around the data you received from Meilisearch.
188
188
189
189
#### `handleSelected`<!-- omit in toc -->
190
190
@@ -222,7 +222,7 @@ The function is called with the following arguments:
222
222
223
223
#### `meilisearchOptions`<!-- omit in toc -->
224
224
225
-
You can forward search parameters to the MeiliSearch API by using the `meilisearchOptions` key. Checkout out the [MeiliSearch documentation about search parameters](https://docs.meilisearch.com/reference/features/search_parameters.html#search-parameters).
225
+
You can forward search parameters to the Meilisearch API by using the `meilisearchOptions` key. Checkout out the [Meilisearch documentation about search parameters](https://docs.meilisearch.com/reference/features/search_parameters.html#search-parameters).
226
226
227
227
For example, you might want to increase the number of results displayed in the dropdown:
228
228
@@ -274,7 +274,7 @@ docsSearchBar({
274
274
275
275
Here is a basic [HTML file](playground/index.html) used in the playground of this repository.
276
276
277
-
As a more concrete example, you can [check out the configuration](https://github.com/meilisearch/vuepress-plugin-meilisearch/blob/bf2210e131eb5630f632d514f35710ee6576ec7a/MeiliSearchBox.vue#L64) applied in the MeiliSearch plugin for VuePress.
277
+
As a more concrete example, you can [check out the configuration](https://github.com/meilisearch/vuepress-plugin-meilisearch/blob/main/MeiliSearchBox.vue#L60) applied in the Meilisearch plugin for VuePress.
278
278
279
279
#### Styling <!-- omit in toc -->
280
280
@@ -317,11 +317,11 @@ As a more concrete example, you can [check out the configuration](https://github
317
317
318
318
##### More Examples <!-- omit in toc -->
319
319
320
-
Here is the [CSS customization](https://github.com/meilisearch/vuepress-plugin-meilisearch/blob/bf2210e131eb5630f632d514f35710ee6576ec7a/MeiliSearchBox.vue#L77-L177) applied in the MeiliSearch plugin for VuePress.
320
+
Here is the [CSS customization](https://github.com/meilisearch/vuepress-plugin-meilisearch/blob/main/MeiliSearchBox.vue#L82) applied in the Meilisearch plugin for VuePress.
321
321
322
-
## 🤖 Compatibility with MeiliSearch
322
+
## 🤖 Compatibility with Meilisearch
323
323
324
-
This package only guarantees the compatibility with the [version v0.24.0 of MeiliSearch](https://github.com/meilisearch/MeiliSearch/releases/tag/v0.24.0).
324
+
This package only guarantees the compatibility with the [version v0.24.0 of Meilisearch](https://github.com/meilisearch/meilisearch/releases/tag/v0.24.0).
325
325
326
326
## ⚙️ Development Workflow and Contributing
327
327
@@ -336,4 +336,4 @@ Due to a lot of future changes in this repository compared to the original one,
336
336
337
337
<hr>
338
338
339
-
**MeiliSearch** provides and maintains many **SDKs and Integration tools** like this one. We want to provide everyone with an **amazing search experience for any kind of project**. If you want to contribute, make suggestions, or just know what's going on right now, visit us in the [integration-guides](https://github.com/meilisearch/integration-guides) repository.
339
+
**Meilisearch** provides and maintains many **SDKs and Integration tools** like this one. We want to provide everyone with an **amazing search experience for any kind of project**. If you want to contribute, make suggestions, or just know what's going on right now, visit us in the [integration-guides](https://github.com/meilisearch/integration-guides) repository.
0 commit comments