Skip to content

Commit

Permalink
Fix Makefile typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ehanson8 committed Sep 8, 2023
1 parent 5210fb4 commit fb0700b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ publish-stage: ## Only use in an emergency
run-dev: ## Runs the task in dev - see readme for more info
aws ecs run-task --cluster DSS-SubmissionService-dev --task-definition DSS-SubmissionService-dev-task --network-configuration "awsvpcConfiguration={subnets=[subnet-0488e4996ddc8365b,subnet-022e9ea19f5f93e65],securityGroups=[sg-044033bf5f102c544],assignPublicIp=DISABLED}" --launch-type FARGATE --region us-east-1

verify-dspace-connnection-dev: # Verify dev app can connect to DSpace
verify-dspace-connection-dev: # Verify dev app can connect to DSpace
aws ecs run-task --cluster DSS-SubmissionService-dev --task-definition DSS-SubmissionService-dev-task --network-configuration "awsvpcConfiguration={subnets=[subnet-0488e4996ddc8365b,subnet-022e9ea19f5f93e65],securityGroups=[sg-044033bf5f102c544],assignPublicIp=DISABLED}" --launch-type FARGATE --region us-east-1 --overrides '{"containerOverrides": [ {"name": "DSS", "command": ["verify-dspace-connection"]}]}'

run-stage: ## Runs the task in stage - see readme for more info
aws ecs run-task --cluster DSS-SubmissionService-stage --task-definition DSS-SubmissionService-stage-task --network-configuration "awsvpcConfiguration={subnets=[subnet-05df31ac28dd1a4b0,subnet-04cfa272d4f41dc8a],securityGroups=[sg-0f64d9a1101d544d1],assignPublicIp=DISABLED}" --launch-type FARGATE --region us-east-1

verify-dspace-connnection-stage: # Verify stage app can connect to DSpace
verify-dspace-connection-stage: # Verify stage app can connect to DSpace
aws ecs run-task --cluster DSS-SubmissionService-stage --task-definition DSS-SubmissionService-stage-task --network-configuration "awsvpcConfiguration={subnets=[subnet-05df31ac28dd1a4b0,subnet-04cfa272d4f41dc8a],securityGroups=[sg-0f64d9a1101d544d1],assignPublicIp=DISABLED}" --launch-type FARGATE --region us-east-1 --overrides '{"containerOverrides": [ {"name": "DSS", "command": ["verify-dspace-connection"]}]}'

# run-prod: ## Runs the task in stage - see readme for more info
# Not yet deployed in production

# verify-dspace-connnection-prod: # Verify prod app can connect to DSpace
# verify-dspace-connection-prod: # Verify prod app can connect to DSpace
# Not yet deployed in production

### Dependency commands ###
Expand Down

0 comments on commit fb0700b

Please sign in to comment.