Skip to content

Commit

Permalink
Update default values in config
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenkumarct committed Feb 1, 2024
1 parent 4fb312b commit 4d468d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions processor/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ export const config = {
projectKey: process.env.CTP_PROJECT_KEY || 'test',
clientId: process.env.CTP_CLIENT_ID || 'clientId',
clientSecret: process.env.CTP_CLIENT_SECRET || 'clientSecret',
authUrl: process.env.CTP_AUTH_URL || 'http://auth.test.com',
apiUrl: process.env.CTP_API_URL || 'http://api.test.com',
sessionUrl: process.env.CTP_SESSION_URL || 'http://session.test.com',
authUrl: process.env.CTP_AUTH_URL || 'https://auth.europe-west1.gcp.commercetools.com',
apiUrl: process.env.CTP_API_URL || 'https://api.europe-west1.gcp.commercetools.com',
sessionUrl: process.env.CTP_SESSION_URL || 'https://session-dev.europe-west1.gcp.commercetools.com/',

// Required by logger
loggerLevel: process.env.LOGGER_LEVEL || 'info',
Expand Down

0 comments on commit 4d468d8

Please sign in to comment.