Skip to content

Commit

Permalink
Make GQL_API_URL manually
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephVolosin committed Dec 11, 2024
1 parent 1c7c735 commit 5348546
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/packages/external-source/external-source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ import multer from 'multer';

const upload = multer({ limits: { fieldSize: 25 * 1024 * 1024 } });
const logger = getLogger('packages/external-source/external-source');
const { RATE_LIMITER_LOGIN_MAX, GQL_API_URL } = getEnv();
const { RATE_LIMITER_LOGIN_MAX, HASURA_API_URL } = getEnv();
const GQL_API_URL = `${HASURA_API_URL}/v1/graphql`;
const ajv = new Ajv();
const compiledAttributeMetaschema = ajv.compile(attributeSchemaMetaschema);
const refreshLimiter = rateLimit({
Expand Down

0 comments on commit 5348546

Please sign in to comment.