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