Skip to content

Commit

Permalink
fix(core-admin): Fix hardcoded values
Browse files Browse the repository at this point in the history
  • Loading branch information
alllenshibu committed Feb 29, 2024
1 parent 1017eaf commit 7a46af6
Show file tree
Hide file tree
Showing 2 changed files with 1,867 additions and 1,833 deletions.
4 changes: 2 additions & 2 deletions apps/core-admin/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ app.use(
app.use(bodyParser.json());

const jwtCheck = auth({
audience: 'https://core.techno.iedcmec.in/api',
issuerBaseURL: 'https://dev-techno.jp.auth0.com',
audience: process.env.AUTH0_AUDIENCE,
issuerBaseURL: process.env.AUTH0_ISSUER_BASE_URL,
tokenSigningAlg: 'RS256',
});

Expand Down
Loading

0 comments on commit 7a46af6

Please sign in to comment.