Sha256: 169d7cad6209ba9661ed7cf41e3336c756e6f3ce4040092b5203302314a9c17a
Contents?: true
Size: 1.6 KB
Versions: 2
Compression:
Stored size: 1.6 KB
Contents
--- title: Structure --- Ufo creates a ufo folder within your project which contains the required files used by ufo to build and deploy docker images to ECS. The standard directory structure of the ufo folder looks like this: ```sh ufo ├── output ├── settings.yml ├── task_definitions.rb └── templates └── main.json.erb ``` The table below covers the purpose of each folder and file. File / Directory | Description ------------- | ------------- <code>output/</code> | The folder where the generated task definitions are written to. The way the task definitions are generated are covered in [ufo tasks build]({% link _docs/tutorial-ufo-tasks-build.md %}). <code>settings.yml</code> | Ufo's settings file, where you and adjust the default [settings]({% link _docs/settings.md %}). <code>task_definitions.rb</code> | This where you define the task definitions and specify the variables to be used by the ERB templates. <code>templates/</code> | The ERB templates with the task definition json code. The template are covered in more detail in [ufo tasks build]({% link _docs/tutorial-ufo-tasks-build.md %}). <code>templates/main.json.erb</code> | This is the main and starter template task definition json file that ufo initially generates. Now that you know where the ufo configurations are located and what they look like. Let use ufo! <a id="prev" class="btn btn-basic" href="{% link _docs/install.md %}">Back</a> <a id="next" class="btn btn-primary" href="{% link _docs/tutorial.md %}">Next Step</a> <p class="keyboard-tip">Pro tip: Use the <- and -> arrow keys to move back and forward.</p>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ufo-1.7.1 | docs/_docs/structure.md |
ufo-1.7.0 | docs/_docs/structure.md |