mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-26 23:01:05 +08:00
f5e869c51f
The generated page’s benefit-to-complexity ratio was too low. BUG=crashpad:138 Change-Id: I5324c33b6b7f83e973c40b256b06e25c763b23c4 Reviewed-on: https://chromium-review.googlesource.com/408268 Reviewed-by: Robert Sesek <rsesek@chromium.org>
This is the App Engine app that serves https://crashpad.chromium.org/. To work on this app, obtain the App Engine SDK for Go from https://cloud.google.com/appengine/docs/go/download. Unpacking it produces a go_appengine directory. This may be added to your $PATH for convenience, although it is not necessary. The commands in this README are expected to be run from the directory containing app.yaml. The App Engine SDK for Go provides App Engine packages at the “appengine” import path, but not the newer “google.golang.org/appengine” path. The Crashpad app uses the newer paths. See https://github.com/golang/appengine#2-update-import-paths and https://code.google.com/p/googleappengine/issues/detail?id=11670. To make these available, obtain a Go release from https://golang.org/dl/, and run: $ GOROOT=…/go_appengine/goroot GOPATH=…/go_appengine/gopath go get -d To test locally: $ …/go_appengine/goapp serve Look for the “Starting module "default" running at: http://localhost:8080” line, which tells you the URL of the local running instance of the app. To deploy: $ version=$(git rev-parse --short=12 HEAD) $ [[ -n "$(git status --porcelain)" ]] && version+=-dirty $ goapp deploy -version "${version}" Note that app.yaml does not name a “version” to encourage you to use a git hash as the version, as above. Activate a newly-deployed version by visiting the App Engine console at https://appengine.google.com/deployment?&app_id=s~crashpad-home, selecting it, and choosing “Make Default”. It is also possible to delete old versions from this page when they are no longer needed.