aboutsummaryrefslogtreecommitdiff
path: root/rewrite.go
Commit message (Collapse)AuthorAge
* content: fix link to "Go version 1 is released"d-tsuji2020-09-05
| | | | | | | | Change-Id: Iac52d9fc7044fa5cecf19e6580688a1ab49cb156 Reviewed-on: https://go-review.googlesource.com/c/blog/+/253099 Run-TryBot: Emmanuel Odeke <emm.odeke@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
* blog: clean up blog to allow usage with gcloud commandAndrew Bonventre2018-05-24
+ The app.yaml file needs to be in the same directory as the entry-point Go files, so those are moved from ./blog to ./ + Go files within the context article did not have the +build OMIT directive, so gcloud would view them as files that needed to be built at deploy time. Add the +build OMIT directive and use the context package instead of x/net/context. + Switch to using a service instead of version and update app.yaml to account for this. + Use 1.9 as the runtime. + Remove superfluous .gitignore Change-Id: I7c886849b912bc7f5b67cd2791cb6986d93d5cc7 Reviewed-on: https://go-review.googlesource.com/114455 Reviewed-by: Russ Cox <rsc@golang.org>