Skip to content

Commit fea2f6f

Browse files
committed
blog: delete per-repo files, update README.md, go.mod
It would be nice to delete go.mod and let the directory be part of the x/website module, but right now x/website requires Go 1.16 and the blog runs on App Engine which doesn't yet support Go 1.16. So the blog is actually requiring an older, pre-Go 1.16 version of x/website. Once App Engine updates to Go 1.16 we can take that next step of making blog not a submodule. Or perhaps before that we will get to the point of serving the blog from the cmd/golangorg server. One way or another, this will get even simpler. Change-Id: I04f9b4d4433009c8b204acba9043b2d8a6261189 Reviewed-on: https://go-review.googlesource.com/c/website/+/322791 Trust: Russ Cox <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent 212bb63 commit fea2f6f

10 files changed

+6
-89
lines changed

blog/.gitattributes .gitattributes

File renamed without changes.

blog/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
.gcloudignore
2-
.git

blog/AUTHORS

-3
This file was deleted.

blog/CONTRIBUTING.md

-26
This file was deleted.

blog/CONTRIBUTORS

-3
This file was deleted.

blog/LICENSE

-27
This file was deleted.

blog/PATENTS

-22
This file was deleted.

blog/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Go Blog
22

3-
[![Go Reference](https://pkg.go.dev/badge/golang.org/x/blog.svg)](https://pkg.go.dev/golang.org/x/blog)
3+
[![Go Reference](https://pkg.go.dev/badge/golang.org/x/website/blog.svg)](https://pkg.go.dev/golang.org/x/website/blog)
44

5-
This repository holds the Go Blog server code and content.
5+
This directory holds the Go Blog server code and content.
66

77
## Download/Install
88

9-
The easiest way to install is to run `go get -u golang.org/x/blog`. You can also
10-
manually git clone the repository to \$GOPATH/src/golang.org/x/blog.
9+
The easiest way to install is to run `go get -u golang.org/x/website/blog`. You can also
10+
manually git clone the repository to \$GOPATH/src/golang.org/x/website.
1111

1212
## Running Locally
1313

@@ -38,7 +38,7 @@ This repository uses Gerrit for code changes. To learn how to submit changes to
3838
this repository, see https://golang.org/doc/contribute.html.
3939

4040
The main issue tracker for the blog is located at
41-
https://github.com/golang/go/issues. Prefix your issue with "x/blog:" in the
41+
https://github.com/golang/go/issues. Prefix your issue with "x/website/blog:" in the
4242
subject line, so it is easy to find.
4343

4444
## Deploying

blog/codereview.cfg

-1
This file was deleted.

blog/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module golang.org/x/blog
1+
module golang.org/x/website/blog
22

33
go 1.11
44

0 commit comments

Comments
 (0)