diff options
author | Andrew Bonventre <andybons@golang.org> | 2018-05-24 14:41:55 -0400 |
---|---|---|
committer | Andrew Bonventre <andybons@golang.org> | 2018-05-24 20:12:49 +0000 |
commit | 6f984eca1cab903fc42e41d4663186c3f8930518 (patch) | |
tree | c05463ed903c6790b1b403b6ebc05ab95875ce8f /local.go | |
parent | 8ca53492445ae5839075ef6f4aebbd6d882981e9 (diff) |
blog: clean up blog to allow usage with gcloud command
+ 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>
Diffstat (limited to 'local.go')
-rw-r--r-- | local.go | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/local.go b/local.go new file mode 100644 index 0000000..676acb5 --- /dev/null +++ b/local.go @@ -0,0 +1,69 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !appengine + +// This file implements a stand-alone blog server. + +package main + +import ( + "flag" + "log" + "net" + "net/http" + + "golang.org/x/tools/blog" +) + +var ( + httpAddr = flag.String("http", "localhost:8080", "HTTP listen address") + contentPath = flag.String("content", "content/", "path to content files") + templatePath = flag.String("template", "template/", "path to template files") + staticPath = flag.String("static", "static/", "path to static files") + reload = flag.Bool("reload", false, "reload content on each page load") +) + +func newServer(reload bool, staticPath string, config blog.Config) (http.Handler, error) { + mux := http.NewServeMux() + if reload { + mux.HandleFunc("/", reloadingBlogServer) + } else { + s, err := blog.NewServer(config) + if err != nil { + return nil, err + } + mux.Handle("/", s) + } + fs := http.FileServer(http.Dir(staticPath)) + mux.Handle("/static/", http.StripPrefix("/static/", fs)) + return mux, nil +} + +func main() { + flag.Parse() + config.ContentPath = *contentPath + config.TemplatePath = *templatePath + mux, err := newServer(*reload, *staticPath, config) + if err != nil { + log.Fatal(err) + } + ln, err := net.Listen("tcp", *httpAddr) + if err != nil { + log.Fatal(err) + } + log.Println("Listening on addr", *httpAddr) + log.Fatal(http.Serve(ln, mux)) +} + +// reloadingBlogServer is an handler that restarts the blog server on each page +// view. Inefficient; don't enable by default. Handy when editing blog content. +func reloadingBlogServer(w http.ResponseWriter, r *http.Request) { + s, err := blog.NewServer(config) + if err != nil { + http.Error(w, err.Error(), 500) + return + } + s.ServeHTTP(w, r) +} |