Skip to content

Commit

Permalink
Hard coding rp enabled links for now
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwinGuzman committed Sep 12, 2024
1 parent 8da7d20 commit c9a5060
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@ jobs:
- name: Force ECS Update
run: |
aws ecs update-service --cluster discovery-ui-production-tf --service discovery-ui-production --force-new-deployment
aws ecs update-service --cluster discovery-ui-production --service discovery-ui-production --force-new-deployment
3 changes: 2 additions & 1 deletion src/app/data/appConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ const appConfig = {
nyplHeaderUrl: process.env.NYPL_HEADER_URL || 'https://qa-ds-header.nypl.org',
launchEmbedUrl: process.env.LAUNCH_EMBED_URL || '',
sierraUpgradeAugust2023: process.env.SIERRA_UPGRADE_AUG_2023 === 'true',
reverseProxyEnabled: process.env.REVERSE_PROXY_ENABLED === 'true'
// Hardcoded for now, but should be configurable in the future
reverseProxyEnabled: true, //process.env.REVERSE_PROXY_ENABLED === 'true'
};

export default appConfig;

0 comments on commit c9a5060

Please sign in to comment.