docs/_docs/ufo-init.md in ufo-2.0.3 vs docs/_docs/ufo-init.md in ufo-2.1.0
- old
+ new
@@ -1,18 +1,18 @@
---
title: ufo init
---
-The `ufo init` command provides a way to quickly setup a project to be ufo ready. It creates a ufo folder with all the starter supporting files in order to use ufo. This page demonstrates how to use `ufo init`. The command has a few required options `--app`, `--env`, `--cluster`, and `--image`.
+The `ufo init` command provides a way to quickly setup a project to be ufo ready. It creates a ufo folder with all the starter supporting files in order to use ufo. This page demonstrates how to use `ufo init`. The command requires these options: `--app` and `--image`.
For this example we will use [tongueroo/hi](https://github.com/tongueroo/hi) which is a small test sinatra app.
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 prod --cluster=prod --image=tongueroo/hi
+ufo init --app=hi --image=tongueroo/hi
```
You should see output similiar to this:
<img src="/img/tutorials/ufo-init.png" class="doc-photo" />