playground: update favicon.ico to be consistent with the website

The two got out of sync with commit https://golang.org/cl/26850

Before:
$ identify app/static/favicon.ico
app/static/favicon.ico ICO 16x16 16x16+0+0 32-bit DirectClass 1.15KB 0.000u 0:00.000

Change:
$ cp ../go/favicon.ico app/static/favicon.ico

After:
$ identify app/static/favicon.ico
app/static/favicon.ico[0] ICO 32x32 32x32+0+0 32-bit DirectClass 5.69KB 0.000u 0:00.000
app/static/favicon.ico[1] ICO 16x16 16x16+0+0 8-bit DirectClass 5.69KB 0.000u 0:00.000

Fixes #20149

Change-Id: I0feee344240d9900d1070e4d5c5423c0c6f155f9
Reviewed-on: https://go-review.googlesource.com/37591
Reviewed-by: Chris Broadfoot <cbro@golang.org>
1 file changed
tree: 29c0565b832bac309bff0331014c39ab14a1c067
  1. app/
  2. sandbox/
  3. AUTHORS
  4. codereview.cfg
  5. CONTRIBUTING.md
  6. CONTRIBUTORS
  7. LICENSE
  8. PATENTS
  9. README.md
README.md

playground

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.

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.

Deployment

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