Skip to content

Commit 634697b

Browse files
committed
chores: replace MEILISEARCH_HOST with MEILISEARCH_URL
1 parent fb0f65f commit 634697b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
stdin_open: true
88
working_dir: /home/package
99
environment:
10-
- MEILISEARCH_HOST=http://meilisearch:7700
10+
- MEILISEARCH_URL=http://meilisearch:7700
1111
depends_on:
1212
- meilisearch
1313
links:

tests/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22

33
MASTER_KEY = 'masterKey'
4-
BASE_URL = os.getenv('MEILISEARCH_HOST') if os.getenv('MEILISEARCH_HOST') else 'http://127.0.0.1:7700'
4+
BASE_URL = os.getenv('MEILISEARCH_URL') if os.getenv('MEILISEARCH_URL') else 'http://127.0.0.1:7700'
55

66
INDEX_UID = 'indexUID'
77
INDEX_UID2 = 'indexUID2'

0 commit comments

Comments
 (0)