-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
15 lines (15 loc) · 862 Bytes
/
package.json
File metadata and controls
15 lines (15 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"name": "redshift_microbatch",
"version": "0.1.0",
"private": true,
"scripts": {
"init-cdk": "cd infra && npm install",
"build-clear-pending-metadata": "cd functions/ClearPendingMetadata && npm install",
"build-bulk-loader": "cd functions/BulkLoader && npm install",
"build-microbatch-loader": "cd functions/MicrobatchLoader && npm install",
"build-next-loader": "cd functions/NextLoader && npm install",
"build-loadsqlbuilder-layer": "cd layers/LoadSQLBuilder/nodejs && npm install",
"deploy": "npm run build-loadsqlbuilder-layer && npm run build-clear-pending-metadata && npm run build-bulk-loader && npm run build-microbatch-loader && npm run build-next-loader && npm run init-cdk && cd infra && cdk bootstrap && cdk deploy",
"deploy-no-build": "cd infra && cdk deploy"
}
}