tree: f38c9e2de10b2d45f2633f7dd69aba294be4e50e [path history] [tgz]
  1. static/
  2. .gcloudignore
  3. app.yaml
  4. build.go
  5. config.go
  6. cron-part.yaml
  7. cron.sh
  8. dash.go
  9. dash_test.go
  10. handler.go
  11. index.yaml
  12. init.go
  13. notify.go
  14. notify.txt
  15. perf.go
  16. perf_changes.go
  17. perf_changes.html
  18. perf_detail.go
  19. perf_detail.html
  20. perf_graph.go
  21. perf_graph.html
  22. perf_learn.go
  23. perf_learn.html
  24. perf_notify.txt
  25. README.md
  26. test.go
  27. ui.go
  28. ui.html
  29. update.go
app/appengine/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
GO111MODULE=on gcloud app deploy app.yaml

or, to not affect your gcloud state, use:

GO111MODULE=on gcloud app --account=username@google.com --project=golang-org deploy app.yaml