commit | 759e43062bdb893b1c09828b11d981b38d952dfe | [log] [tgz] |
---|---|---|
author | Chris Broadfoot <cbro@golang.org> | Fri Dec 16 23:47:23 2016 -0800 |
committer | Chris Broadfoot <cbro@golang.org> | Mon Dec 19 19:40:12 2016 +0000 |
tree | f548853af6c56867317a946f0ffa16d7bd184d98 | |
parent | 5fbbf1ad07b3d798c66b7dc65c4db881ae7090c6 [diff] |
sandbox: update to go1.7.4, add missing Dockerfile dep Change-Id: Ie40d867223356499c9106d364f9c578f6c76a986 Reviewed-on: https://go-review.googlesource.com/34558 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This subrepository holds the source for various packages and tools that support the Go playground: https://play.golang.org/
To submit changes to this repository, see http://golang.org/doc/contribute.html.
# build the sandbox image docker build -t sandbox sandbox/
# run the sandbox docker run -d -p 8080:8080 sandbox # get docker host ip, try boot2docker fallback on localhost. DOCKER_HOST_IP=$(boot2docker ip || echo localhost) # run go some code cat /path/to/code.go | go run ./sandbox/client.go | curl --data @- $DOCKER_HOST_IP:8080/compile
To submit changes to this repository, see http://golang.org/doc/contribute.html.
(Googlers only) To deploy the front-end, use play/deploy.sh
.
gcloud --project golang-org app deploy sandbox/app.yaml --no-promote --version=17rc6
Use the Cloud Console's to set the new version as the default: https://cloud.google.com/console/appengine/versions?project=golang-org&moduleId=sandbox Then test that play.golang.org and tour.golang.org are working before deleting the old version.