golang.org/x/build@v0.0.0-20240506185731-218518f32b70/cmd/coordinator/README.md (about) 1 # Coordinator 2 3 Building, running tests, running locally is supported on Linux and macOS only. 4 5 ## Running locally in dev mode 6 7 ```sh 8 go run . -mode=dev -listen-http=localhost:8080 9 ``` 10 11 Then visit http://localhost:8080/ in your browser. 12 13 Some features won't work when running in dev mode, 14 but you should be able to navigate between the homepage, the build dashboard, 15 the builders page, and do limited local development and testing. 16 17 To test builds locally, start a `host-linux-amd64-localdev` reverse buildlet, 18 which will run `linux-amd64` tests: 19 20 ```sh 21 go run golang.org/x/build/cmd/buildlet -halt=false -reverse-type=host-linux-amd64-localdev 22 ``` 23 24 To view/modify the "Trybot Status" page locally, visit the /try-dev endpoint. 25 You should see a trybot status page with some example data. 26 27 ## Deployment 28 29 See the documentation on [deployment](../../doc/deployment.md).