docs/_docs/ufo-init.md in ufo-1.7.1 vs docs/_docs/ufo-init.md in ufo-2.0.0

- old
+ new

@@ -9,11 +9,11 @@ Let's run the command in our newly clone project. ```sh git clone https://github.com/tongueroo/hi.git cd hi -ufo init --app=hi --env stag --cluster=stag --image=tongueroo/hi +ufo init --app=hi --env prod --cluster=prod --image=tongueroo/hi ``` You should see output similiar to this: <img src="/img/tutorials/ufo-init.png" class="doc-photo" /> @@ -23,11 +23,15 @@ ```sh ufo ├── output ├── settings.yml ├── task_definitions.rb -└── templates - └── main.json.erb +├── templates +├ └── main.json.erb +└── variables + ├── base.rb + ├── prod.rb + └── stag.rb ``` The explanation of the folders and files were covered in detailed earlier at [Structure]({% link _docs/structure.md %}). <a id="prev" class="btn btn-basic" href="{% link _docs/commands.md %}">Back</a>