Andromeda QA Deployment Steps
Prerequisite: Make sure you have installed & configured AWS CLI.
Front End:
Builder:
ng build –c=qa
aws s3 sync dist/ax-app-builder/. s3://andromeda-builder-qa.axonator.com
aws cloudfront create-invalidation –distribution-id ESPXG6RD3K5IG –paths “/*”
Container:
ng build –c=qa
aws cloudfront create-invalidation –distribution-id E1S2NHHCPF45J7 –paths “/*”
aws s3 sync dist/ax-app-container s3://andromeda-container-qa
Note: Make sure you guys setup AWS CLI before using these commands.
Backend:
Install Amazon templates for Lambda CLI (Needed first time only):
dotnet new -i Amazon.Lambda.Templates
From the controller project, execute:
dotnet lambda deploy-function
When prompted for build runtime, enter:dotnetcore3.1
When prompted for a function name:Builder: AXAppBuilder-QAContainer: AXAppContainer-QA
0 Comments