Skip to content

Commit

Permalink
fix: use url instead of host
Browse files Browse the repository at this point in the history
  • Loading branch information
masnormen committed Mar 21, 2024
1 parent 71673a9 commit 6c8bc13
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions scripts/typesense/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ import { join } from 'path';
let client = new Client({
nodes: [
{
host: process.env.TYPESENSE_API_URL,
port: 8108,
protocol: 'http',
url: process.env.TYPESENSE_API_URL,
},
],
apiKey: process.env.TYPESENSE_API_KEY,
Expand Down

0 comments on commit 6c8bc13

Please sign in to comment.