mirror of
https://github.com/linkwarden/linkwarden.git
synced 2026-03-03 02:27:00 +00:00
11 lines
242 B
TypeScript
11 lines
242 B
TypeScript
import { MeiliSearch } from "meilisearch";
|
|
|
|
const apiKey = process.env.MEILI_MASTER_KEY;
|
|
|
|
export const meiliClient = apiKey
|
|
? new MeiliSearch({
|
|
host: process.env.MEILI_HOST || "http://meilisearch:7700",
|
|
apiKey,
|
|
})
|
|
: null;
|