File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ help: ## Show available commands
1717build : # # Build the application
1818 @echo " Building TypeScript application..."
1919 @npm install
20- @sam build --template-file infrastructure/approvals-service.yaml
20+ @sam build --template-file infrastructure/approvals-service/template .yaml
2121
2222deploy-domain : # # Deploy domain resources (EventBridge, Schema Registry)
2323 @echo " Deploying domain resources..."
@@ -34,7 +34,7 @@ deploy-domain: ## Deploy domain resources (EventBridge, Schema Registry)
3434deploy-service : build # # Deploy service resources (Lambda, Step Functions, DynamoDB)
3535 @echo " Deploying service resources..."
3636 @sam deploy \
37- --template-file infrastructure/approvals-service.yaml \
37+ --template-file infrastructure/approvals-service/template .yaml \
3838 --stack-name $(STACK_PREFIX ) -approvals-service \
3939 --parameter-overrides Stage=$(STAGE ) \
4040 --capabilities CAPABILITY_IAM CAPABILITY_AUTO_EXPAND \
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ help: ## Show available commands
1717build : # # Build the application
1818 @echo " Building TypeScript application..."
1919 @npm install
20- @sam build --template-file infrastructure/contracts-service.yaml
20+ @sam build --template-file infrastructure/contracts-service/template .yaml
2121
2222deploy-domain : # # Deploy domain resources (EventBridge, Schema Registry)
2323 @echo " Deploying domain resources..."
@@ -45,7 +45,7 @@ deploy-schema: ## Deploy event schema
4545deploy-service : build # # Deploy service resources (Lambda, API Gateway, DynamoDB)
4646 @echo " Deploying service resources..."
4747 @sam deploy \
48- --template-file infrastructure/contracts-service.yaml \
48+ --template-file infrastructure/contracts-service/template .yaml \
4949 --stack-name $(STACK_PREFIX ) -contracts-contracts-service \
5050 --parameter-overrides Stage=$(STAGE ) \
5151 --capabilities CAPABILITY_IAM CAPABILITY_AUTO_EXPAND \
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ help: ## Show available commands
1717build : # # Build the application
1818 @echo " Building TypeScript application..."
1919 @npm install
20- @sam build --template-file infrastructure/web-service.yaml
20+ @sam build --template-file infrastructure/web-service/template .yaml
2121
2222deploy-domain : # # Deploy domain resources (EventBridge, Schema Registry)
2323 @echo " Deploying domain resources..."
@@ -56,7 +56,7 @@ deploy-subscriptions: ## Deploy event subscriptions
5656deploy-service : build # # Deploy web service
5757 @echo " Deploying web service..."
5858 @sam deploy \
59- --template-file infrastructure/web-service.yaml \
59+ --template-file infrastructure/web-service/template .yaml \
6060 --stack-name $(STACK_PREFIX ) -web-service \
6161 --parameter-overrides Stage=$(STAGE ) \
6262 --capabilities CAPABILITY_IAM CAPABILITY_AUTO_EXPAND \
You can’t perform that action at this time.
0 commit comments