github.com/dahs81/otto@v0.2.1-0.20160126165905-6400716cf085/website/source/docs/apps/go/customization.html.md (about) 1 --- 2 layout: "app_go" 3 page_title: "Customization - Go App Type" 4 sidebar_current: "docs-go-customization" 5 description: |- 6 This page documents the customizations 7 that are available to change the behavior of Go 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 Go applications with Otto. 14 15 Example: 16 17 ``` 18 customization { 19 go_version = "1.4.2" 20 } 21 ``` 22 23 Available options: 24 25 * `go_version` (string) - The Go version to install for development 26 and for building the application for deployment. This defaulits to 1.5.1. 27 28 * `go_import_path` (string) - The import path of this application so Otto 29 knows where to place it in the GOPATH. Example: "github.com/hashicorp/foo"