Skip to content

Commit cdb6420

Browse files
drop https after consulting other programmers
1 parent 8cc567d commit cdb6420

20 files changed

+233
-233
lines changed

.code-samples.meilisearch.yaml

Lines changed: 202 additions & 202 deletions
Large diffs are not rendered by default.

guides/computing_hugging_face_embeddings_gpu.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Next, enable the vector store experimental feature:
5959

6060
```sh
6161
curl \
62-
-X PATCH 'https://MEILISEARCH_URL/experimental-features/' \
62+
-X PATCH 'MEILISEARCH_URL/experimental-features/' \
6363
-H 'Content-Type: application/json' \
6464
--data-binary '{ "vectorStore": true }'
6565
```
@@ -68,7 +68,7 @@ Then add the Hugging Face embedder to your index settings:
6868

6969
```sh
7070
curl \
71-
-X PATCH 'https://MEILISEARCH_URL/indexes/INDEX_NAME/settings/embedders' \
71+
-X PATCH 'MEILISEARCH_URL/indexes/INDEX_NAME/settings/embedders' \
7272
-H 'Content-Type: application/json' \
7373
--data-binary '{ "default": { "source": "huggingFace" } }'
7474
```

guides/front_end/search_bar_for_docs.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ You can run the scraper with Docker. With our local Meilisearch instance set up
8484
```bash
8585
docker run -t --rm \
8686
--network=host \
87-
-e MEILISEARCH_HOST_URL='https://MEILISEARCH_URL' \
87+
-e MEILISEARCH_HOST_URL='MEILISEARCH_URL' \
8888
-e MEILISEARCH_API_KEY='MASTER_KEY' \
8989
-v <absolute-path-to-your-config-file>:/docs-scraper/config.json \
9090
getmeili/docs-scraper:latest pipenv run ./docs_scraper config.json
@@ -152,7 +152,7 @@ module.exports = {
152152
}
153153
```
154154

155-
The `hostUrl` and the `apiKey` fields are the credentials of the Meilisearch instance. Following on from this tutorial, they are respectively `https://MEILISEARCH_URL` and `MASTER_KEY`.
155+
The `hostUrl` and the `apiKey` fields are the credentials of the Meilisearch instance. Following on from this tutorial, they are respectively `MEILISEARCH_URL` and `MASTER_KEY`.
156156

157157
`indexUid` is the index identifier in your Meilisearch instance in which your website content is stored. It has been defined in the [config file](#configuration-file).
158158

@@ -195,7 +195,7 @@ _[Docxtemplater](https://docxtemplater.com/) search bar demo_
195195
</html>
196196
```
197197

198-
The `hostUrl` and the `apiKey` fields are the credentials of the Meilisearch instance. Following on from this tutorial, they are respectively `https://MEILISEARCH_URL` and `MASTER_KEY`.
198+
The `hostUrl` and the `apiKey` fields are the credentials of the Meilisearch instance. Following on from this tutorial, they are respectively `MEILISEARCH_URL` and `MASTER_KEY`.
199199

200200
`indexUid` is the index identifier in your Meilisearch instance in which your website content is stored. It has been defined in the [config file](#configuration-file).
201201
`inputSelector` is the `id` attribute of the HTML search input tag.

guides/improve_relevancy_large_documents.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ To prevent that from happening, configure `story_id` as the index's distinct att
123123

124124
```sh
125125
curl \
126-
-X PUT 'https://MEILISEARCH_URL/indexes/INDEX_NAME/settings/distinct-attribute' \
126+
-X PUT 'MEILISEARCH_URL/indexes/INDEX_NAME/settings/distinct-attribute' \
127127
-H 'Content-Type: application/json' \
128128
--data-binary '"story_id"'
129129
```

learn/ai_powered_search/deactivate_ai_powered_search.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Alternatively, use [the `/experimental` route](/reference/api/experimental_featu
2525

2626
```sh
2727
curl \
28-
-X PATCH 'https://MEILISEARCH_URL/experimental-features/' \
28+
-X PATCH 'MEILISEARCH_URL/experimental-features/' \
2929
-H 'Content-Type: application/json' \
3030
--data-binary '{
3131
"vectorStore": false

learn/ai_powered_search/getting_started_with_ai_search.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Use [the `/experimental-features` route](/reference/api/experimental_features?ut
3939

4040
```sh
4141
curl \
42-
-X PATCH 'https://MEILISEARCH_URL/experimental-features/' \
42+
-X PATCH 'MEILISEARCH_URL/experimental-features/' \
4343
-H 'Content-Type: application/json' \
4444
--data-binary '{
4545
"vectorStore": true
@@ -54,7 +54,7 @@ Use the `embedders` index setting of the [update `/settings` endpoint](/referenc
5454

5555
```sh
5656
curl \
57-
-X PATCH 'https://MEILISEARCH_URL/indexes/kitchenware/settings' \
57+
-X PATCH 'MEILISEARCH_URL/indexes/kitchenware/settings' \
5858
-H 'Content-Type: application/json' \
5959
--data-binary '{
6060
"embedders": {
@@ -86,7 +86,7 @@ Perform AI-powered searches with `q` and `hybrid` to retrieve search results usi
8686

8787
```sh
8888
curl \
89-
-X POST 'https://MEILISEARCH_URL/indexes/kitchenware/search' \
89+
-X POST 'MEILISEARCH_URL/indexes/kitchenware/search' \
9090
-H 'content-type: application/json' \
9191
--data-binary '{
9292
"q": "kitchen utensils made of wood",

learn/ai_powered_search/search_with_user_provided_embeddings.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Configure the `embedder` index setting, settings its source to `userProvided`:
1717

1818
```sh
1919
curl \
20-
-X PATCH 'https://MEILISEARCH_URL/indexes/movies/settings' \
20+
-X PATCH 'MEILISEARCH_URL/indexes/movies/settings' \
2121
-H 'Content-Type: application/json' \
2222
--data-binary '{
2323
"embedders": {

learn/async/task_webhook.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ A common asynchronous operation is adding or updating documents to an index. The
3838

3939
```sh
4040
curl \
41-
-X POST 'https://MEILISEARCH_URL/indexes/books/documents' \
41+
-X POST 'MEILISEARCH_URL/indexes/books/documents' \
4242
-H 'Content-Type: application/json' \
4343
--data-binary '[
4444
{

learn/engine/datatypes.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ The following query returns patients `0` and `1`:
257257

258258
```sh
259259
curl \
260-
-X POST 'https://MEILISEARCH_URL/indexes/clinic_patients/search' \
260+
-X POST 'MEILISEARCH_URL/indexes/clinic_patients/search' \
261261
-H 'Content-Type: application/json' \
262262
--data-binary '{
263263
"q": "",

learn/filtering_and_sorting/filter_expression_reference.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ This is an experimental feature. Use the experimental features endpoint to activ
179179

180180
```sh
181181
curl \
182-
-X PATCH 'https://MEILISEARCH_URL/experimental-features/' \
182+
-X PATCH 'MEILISEARCH_URL/experimental-features/' \
183183
-H 'Content-Type: application/json' \
184184
--data-binary '{
185185
"containsFilter": true
@@ -211,7 +211,7 @@ This is an experimental feature. Use the experimental features endpoint to activ
211211

212212
```sh
213213
curl \
214-
-X PATCH 'https://MEILISEARCH_URL/experimental-features/' \
214+
-X PATCH 'MEILISEARCH_URL/experimental-features/' \
215215
-H 'Content-Type: application/json' \
216216
--data-binary '{
217217
"containsFilter": true

0 commit comments

Comments
 (0)