Skip to content

Commit f4e51bf

Browse files
committed
update env variables
1 parent 83a0c1b commit f4e51bf

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

apps/site/scripts/orama-search/sync-orama-cloud.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import { ORAMA_SYNC_BATCH_SIZE } from '../../next.constants.mjs';
66
// The following follows the instructions at https://docs.orama.com/cloud/data-sources/custom-integrations/webhooks
77

88
const orama = new OramaCloud({
9-
projectId: process.env.ORAMA_PROJECT_ID || '',
10-
apiKey: process.env.ORAMA_API_KEY || '',
9+
projectId: process.env.NEW_ORAMA_PROJECT_ID || '',
10+
apiKey: process.env.NEW_ORAMA_API_KEY || '',
1111
});
1212

13-
const datasource = orama.dataSource(process.env.ORAMA_DATASOURCE_ID || '');
13+
const datasource = orama.dataSource(process.env.NEW_ORAMA_DATASOURCE_ID || '');
1414

1515
console.log(`Syncing ${siteContent.length} documents to Orama Cloud index`);
1616

0 commit comments

Comments
 (0)