mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Match the env var name (#512)
This commit is contained in:
parent
6bc3bd272a
commit
46aac8ac0a
1 changed files with 3 additions and 3 deletions
|
|
@ -88,10 +88,10 @@ const logAppliedMigrations = (
|
|||
|
||||
export const INDEX_ALIAS = 'pages_alias'
|
||||
export const client = new Client({
|
||||
node: process.env.ELASTICSEARCH_URL || 'http://localhost:9200',
|
||||
node: process.env.ELASTIC_URL || 'http://localhost:9200',
|
||||
auth: {
|
||||
username: process.env.ELASTICSEARCH_USERNAME || '',
|
||||
password: process.env.ELASTICSEARCH_PASSWORD || '',
|
||||
username: process.env.ELASTIC_USERNAME || '',
|
||||
password: process.env.ELASTIC_PASSWORD || '',
|
||||
},
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue