sandbox: add app.yaml to serve with Managed VMs

Change-Id: I912fe78c065efe442d2b72ac930ab9e36dac3210
Reviewed-on: https://go-review.googlesource.com/2703
Reviewed-by: Johan Euphrosine <proppy@google.com>
Reviewed-by: Andrew Gerrand <adg@golang.org>
1 file changed
tree: 399531abdae4e1a205e653a258662a025342dfc4
  1. app/
  2. sandbox/
  3. AUTHORS
  4. CONTRIBUTORS
  5. LICENSE
  6. PATENTS
  7. README.md
README.md

playground

This subrepository holds the source for various packages and tools that support the Go playground: https://play.golang.org/

building

# build the sandbox image
docker build -t sandbox sandbox/

running

# 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.