commit | 816964eae74f7612221c13ab73f2a8021c581010 | [log] [tgz] |
---|---|---|
author | Chris Broadfoot <cbro@golang.org> | Wed Aug 17 18:25:30 2016 -0700 |
committer | Chris Broadfoot <cbro@golang.org> | Mon Aug 22 19:55:35 2016 +0000 |
tree | a0db5b85725cb5fea82810597fdf8aa3f53c3e1a | |
parent | 183b13ab16f01d03fd5ad85d62ea4b1219a9c98d [diff] |
sandbox: remove unused k8s config Change-Id: I7cebb4265f68b10f843a9dd0b0cf2e47c011b232 Reviewed-on: https://go-review.googlesource.com/27318 Reviewed-by: Jessica Frazelle <me@jessfraz.com> 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.