Skip to content

Commit

Permalink
EDSC-4351: Fixes login issue, adds binaryMediaTypes to api gateway
Browse files Browse the repository at this point in the history
  • Loading branch information
macrouch committed Feb 6, 2025
1 parent 21a8469 commit b7f428b
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 16 deletions.
3 changes: 2 additions & 1 deletion bin/deploy-bamboo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ cat <<EOF > .dockerignore
**/node_modules
**/cdk.out
.DS_Store
.env
.git
.github
.esbuild
Expand All @@ -77,7 +78,7 @@ FROM node:22
COPY . /build
WORKDIR /build
RUN npm ci --omit=dev
RUN npm run build
RUN NODE_ENV=production npm run build
EOF
dockerTag=edsc-$bamboo_STAGE_NAME
Expand Down
8 changes: 4 additions & 4 deletions cdk/earthdata-search-infrastructure/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cdk/earthdata-search-infrastructure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"typescript": "~5.6.3"
},
"dependencies": {
"@edsc/cdk-utils": "^0.0.6",
"@edsc/cdk-utils": "^0.1.0",
"aws-cdk-lib": "^2.173.4",
"constructs": "^10.0.0"
}
Expand Down
8 changes: 4 additions & 4 deletions cdk/earthdata-search-static/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cdk/earthdata-search-static/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"typescript": "~5.6.3"
},
"dependencies": {
"@edsc/cdk-utils": "^0.0.6",
"@edsc/cdk-utils": "^0.1.0",
"aws-cdk-lib": "2.175.0",
"constructs": "^10.0.0"
}
Expand Down
Binary file added cdk/earthdata-search/edsc-cdk-utils-0.1.0.tgz
Binary file not shown.
1 change: 1 addition & 0 deletions cdk/earthdata-search/lib/earthdata-search-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export class EarthdataSearchStack extends cdk.Stack {
const apiGateway = new application.ApiGateway(this, 'ApiGateway', {
apiScope: apiNestedStack,
apiName: this.stackName,
binaryMediaTypes: ['image/png'],
stageName: STAGE_NAME,
})
const {
Expand Down
8 changes: 4 additions & 4 deletions cdk/earthdata-search/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cdk/earthdata-search/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"typescript": "~5.6.3"
},
"dependencies": {
"@edsc/cdk-utils": "^0.0.6",
"@edsc/cdk-utils": "^0.1.0",
"aws-cdk-lib": "^2.173.4",
"constructs": "^10.0.0"
}
Expand Down

0 comments on commit b7f428b

Please sign in to comment.