зеркало из https://github.com/golang/build.git
Make the headers fill the screen's width by making the body have display: inline-block and min-width: 100%. Before, scrolling to the right extended past the screen's width, which caused the blue table headers to cut off. Change-Id: I2f186ca044d07a4dfd3ec6cbe3f57a9feee05c99 Reviewed-on: https://go-review.googlesource.com/c/build/+/125475 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> |
||
---|---|---|
.. | ||
static | ||
README.md | ||
app.yaml | ||
build.go | ||
config.go | ||
cron-part.yaml | ||
cron.sh | ||
dash.go | ||
handler.go | ||
index.yaml | ||
init.go | ||
notify.go | ||
notify.txt | ||
perf.go | ||
perf_changes.go | ||
perf_changes.html | ||
perf_detail.go | ||
perf_detail.html | ||
perf_graph.go | ||
perf_graph.html | ||
perf_learn.go | ||
perf_learn.html | ||
perf_notify.txt | ||
test.go | ||
ui.go | ||
ui.html | ||
update.go |
README.md
build.golang.org App Engine App
This is the code that runs https://build.golang.org/
Local development
On a machine with a browser:
dev_appserver.py --port=8080 .
With a remote VM with a port open to the Internet:
dev_appserver.py --enable_host_checking=false --host=0.0.0.0 --port=8080 .
Deploying
gcloud config set project golang-org
gcloud app deploy --no-promote -v {build|build-test} app.yaml
or, to not affect your gcloud state, use:
gcloud app --account=username@google.com --project=golang-org deploy --no-promote -v build app.yaml
Using -v build will run as build.golang.org. Using -v build-test will run as build-test.golang.org.