Kevin Burke | 63bb2e8 | 2017-07-17 10:54:46 -0700 | [diff] [blame] | 1 | # Go Blog |
| 2 | |
| 3 | This repository holds the Go Blog server code and content. |
| 4 | |
| 5 | ## Download/Install |
| 6 | |
| 7 | The easiest way to install is to run `go get -u golang.org/x/blog`. You can also |
| 8 | manually git clone the repository to $GOPATH/src/golang.org/x/blog. |
| 9 | |
| 10 | ## Running Locally |
| 11 | |
| 12 | To run the blog server locally: |
| 13 | |
| 14 | go build -o blog.exe ./blog |
| 15 | ./blog.exe |
| 16 | |
| 17 | and then visit [http://localhost:8080/](http://localhost:8080) in your browser. |
| 18 | |
| 19 | Note that blog.exe caches all content and you must kill it (Ctrl-C on Unix |
| 20 | systems) and restart it after editing any files to view changes. |
| 21 | |
| 22 | ## Contributing |
| 23 | |
| 24 | Articles on the blog should have broad interest to the Go community, and |
| 25 | are mainly written by Go contributors. We encourage you to share your |
| 26 | experiences using Go on your own website, and [to share them with the Go |
| 27 | community][community]. [Hugo][hugo] is a static site server written in Go that |
| 28 | makes it easy to write and share your stories. |
| 29 | |
| 30 | [community]: https://golang.org/help/ |
| 31 | [hugo]: https://gohugo.io/ |
| 32 | |
| 33 | ## Report Issues / Send Patches |
| 34 | |
| 35 | This repository uses Gerrit for code changes. To learn how to submit changes to |
| 36 | this repository, see https://golang.org/doc/contribute.html. |
| 37 | |
| 38 | The main issue tracker for the blog is located at |
| 39 | https://github.com/golang/go/issues. Prefix your issue with "blog:" in the |
| 40 | subject line, so it is easy to find. |