Cart Api deploy:
cd /backend/cart-service/deploy && cdk deploy
Due to dependency between stacks, a deploying order is important. The Product API should be deployed first. Run from the root of project the following command:
- Deploy Product API and UI.
cd /backend/product-service/deploy && cdk deploy - Deploy the Authorization Service
cd /backend/authorization-service/deploy && cdk deploy - Then deploy the Import API by running from the root folder of the project:
cd /backend/import-service/deploy && cdk deploy - Then deploy Postgres DB by running from the root folder of the project:
cd /backend/cart-service/deploy && cdk deploy - Then deploy Cart Service by running from the root folder of the project:
cd /backend/cart-service/lambda && eb init ... && eb create ... && eb deploy ... - Then deploy the bff service by running from the root folder of the project:
cd /backend/bff-service/app && eb init ... && eb create ... && eb deploy ...
The working application is available here