github.com/dahs81/otto@v0.2.1-0.20160126165905-6400716cf085/website/source/docs/apps/custom/customization.html.md (about) 1 --- 2 layout: "app_custom" 3 page_title: "Customization - Custom App Type" 4 sidebar_current: "docs-custom-customization" 5 description: |- 6 This page documents the customizations 7 that are available to change the behavior of custom applications with Otto. 8 --- 9 10 # Customization 11 12 This page documents the [customizations](/docs/appfile/customization.html) 13 that are available to change the behavior of the "custom" application 14 type with Otto. 15 16 Example: 17 18 ``` 19 customization { 20 dev_vagrantfile = "./Vagrantfile" 21 terraform = "./terraform" 22 } 23 ``` 24 25 Available options: 26 27 * `dev_vagrantfile` (string) - Path to a Vagrantfile to use for development. 28 If this isn't specified, `otto dev` will not work for this application. 29 This Vagrantfile will be rendered as a [template](/docs/apps/custom/template.html). 30 31 * `dep_vagrantfile` (string) - Path to a Vagrantfile to use as a fragment 32 that is embedded in other application's Vagrantfiles when this application 33 is being used as a dependency. 34 35 * `packer` (string) - Path to a Packer template to execute. 36 37 * `terraform` (string) - Path to a Terraform module (directory) to use 38 for deployment.