OLD | NEW |
1 This is the App Engine app that serves https://crashpad-home.appspot.com/. | 1 This is the App Engine app that serves https://crashpad.chromium.org/. |
2 | 2 |
3 To work on this app, obtain the App Engine SDK for Go from | 3 To work on this app, obtain the App Engine SDK for Go from |
4 https://cloud.google.com/appengine/downloads. Unpacking it produces a | 4 https://cloud.google.com/appengine/downloads. Unpacking it produces a |
5 go_appengine directory. This may be added to your $PATH for convenience, | 5 go_appengine directory. This may be added to your $PATH for convenience, |
6 although it is not necessary. | 6 although it is not necessary. |
7 | 7 |
8 The commands in this README are expected to be run from the directory containing | 8 The commands in this README are expected to be run from the directory containing |
9 app.yaml. | 9 app.yaml. |
10 | 10 |
11 The App Engine SDK for Go provides App Engine packages at the “appengine” import | 11 The App Engine SDK for Go provides App Engine packages at the “appengine” import |
(...skipping 18 matching lines...) Expand all Loading... |
30 $ [[ -n "$(git status --porcelain)" ]] && version+=-dirty | 30 $ [[ -n "$(git status --porcelain)" ]] && version+=-dirty |
31 $ goapp deploy -version "${version}" | 31 $ goapp deploy -version "${version}" |
32 | 32 |
33 Note that app.yaml does not name a “version” to encourage you to use a git hash | 33 Note that app.yaml does not name a “version” to encourage you to use a git hash |
34 as the version, as above. | 34 as the version, as above. |
35 | 35 |
36 Activate a newly-deployed version by visiting the App Engine console at | 36 Activate a newly-deployed version by visiting the App Engine console at |
37 https://appengine.google.com/deployment?&app_id=s~crashpad-home, selecting it, | 37 https://appengine.google.com/deployment?&app_id=s~crashpad-home, selecting it, |
38 and choosing “Make Default”. It is also possible to delete old versions from | 38 and choosing “Make Default”. It is also possible to delete old versions from |
39 this page when they are no longer needed. | 39 this page when they are no longer needed. |
OLD | NEW |