lib/ufo/help/deploy.md in ufo-3.5.7 vs lib/ufo/help/deploy.md in ufo-4.0.0
- old
+ new
@@ -1,16 +1,16 @@
-It is useful to sometimes deploy only the task definition without re-building it. Say for example, you are debugging the task definition and just want to directly edit the `.ufo/output/hi-web.json` definition. You can accomplish this with the `ufo deploy` command. The `ufo deploy` command will deploy the task definition in `.ufo/output` unmodified. Example:
+It is useful to sometimes deploy only the task definition without re-building it. Say for example, you are debugging the task definition and just want to directly edit the `.ufo/output/demo-web.json` definition. You can accomplish this with the `ufo deploy` command. The `ufo deploy` command will deploy the task definition in `.ufo/output` unmodified. Example:
- ufo deploy hi-web
+ ufo deploy demo-web
The above command does the following:
-1. register the `.ufo/output/hi-web.json` task definition to ECS untouched.
+1. register the `.ufo/output/demo-web.json` task definition to ECS untouched.
2. deploys it to ECS by updating the service
### ufo tasks build
-To regenerate a `.ufo/output/hi-web.json` definition:
+To regenerate a `.ufo/output/demo-web.json` definition:
ufo tasks build
### ufo ship