diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-02-07 11:59:41 -0500 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-02-07 11:59:41 -0500 |
| commit | 92a67579140231c6414797171b97711cec8a2b3d (patch) | |
| tree | 71a135ba4579f6651e4caa987f31e7e5f2a01cae /packages/backend | |
| parent | Merge branch 'develop' into merge/2024-02-03 (diff) | |
| download | sharkey-92a67579140231c6414797171b97711cec8a2b3d.tar.gz sharkey-92a67579140231c6414797171b97711cec8a2b3d.tar.bz2 sharkey-92a67579140231c6414797171b97711cec8a2b3d.zip | |
allow environment override for `fulltextSearch.provider` property
Diffstat (limited to 'packages/backend')
| -rw-r--r-- | packages/backend/src/config.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/backend/src/config.ts b/packages/backend/src/config.ts index e980b40224..7d2641ec66 100644 --- a/packages/backend/src/config.ts +++ b/packages/backend/src/config.ts @@ -518,6 +518,7 @@ function applyEnvOverrides(config: Source) { ['redis', 'redisForPubsub', 'redisForJobQueue', 'redisForTimelines', 'redisForReactions'], ['host', 'port', 'username', 'pass', 'db', 'prefix'], ]); + _apply_top(['fulltextSearch', ['provider']]); _apply_top(['meilisearch', ['host', 'port', 'apikey', 'ssl', 'index', 'scope']]); _apply_top([['sentryForFrontend', 'sentryForBackend'], 'options', ['dsn', 'profileSampleRate', 'serverName', 'includeLocalVariables', 'proxy', 'keepAlive', 'caCerts']]); _apply_top(['sentryForBackend', 'enableNodeProfiling']); |