Skip to content

Commit

Permalink
assess pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielMurray97 committed Jun 24, 2024
1 parent 68ea7a5 commit fb9ec97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { getEnvironmentValue } from '../utils/getEnvironmentValue';

export const PORT = getEnvironmentValue('PORT', '3000');
export const BASE_URL = getEnvironmentValue('BASE_URL', `http://localhost:${PORT}`);
export const CDN_HOST = getEnvironmentValue('CDN_HOST', 'd6nh3dxv55e16.cloudfront.net');
export const CDN_HOST = getEnvironmentValue('CDN_HOST');
export const NODE_SSL_ENABLED = getEnvironmentValue('NODE_SSL_ENABLED', 'false');

export const PATH_SSL_PRIVATE_KEY = getEnvironmentValue('PATH_SSL_PRIVATE_KEY', 'false');
Expand Down
1 change: 1 addition & 0 deletions test/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ export default () => {
process.env.LOG_LEVEL = 'info';
process.env.HUMAN = 'true';
process.env.TEST_KEY = 'test';
process.env.CDN_HOST = 'test';
process.env.UNSANITISED_TEST_KEY = ' test ';
};

0 comments on commit fb9ec97

Please sign in to comment.