Skip to content

Commit cfcda96

Browse files
author
sabin
committed
Changed MEILISEARCH_HOST to MEILISEARCH_URL
1 parent 50e462c commit cfcda96

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/utils/meilisearch-test-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Config } from '../../src/types'
33

44
// testing
55
const MASTER_KEY = 'masterKey'
6-
const HOST = process.env.MEILISEARCH_HOST || 'http://127.0.0.1:7700'
6+
const HOST = process.env.MEILISEARCH_URL || 'http://127.0.0.1:7700'
77
const BAD_HOST = 'http://127.0.0.1:7701'
88

99
const config = {

0 commit comments

Comments
 (0)