Cleanup for merge to gddo

- Update paths to for new home in golang/gddo repo.
- Relicense to Go authors
diff --git a/README.md b/README.md
index 1e2f34f..0edff47 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,11 @@
 lintapp
 =======
 
-This project is the source for [go-lint.appspot.com](http://go-lint.appspot.com).
+This directory contains the source for [go-lint.appspot.com](http://go-lint.appspot.com).
 
-License
--------
+Development Environment Setup
+-----------------------------
 
-[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html).
+- Copy config.go.template to config.go and edit the file as described in the comments.
+- Install Go App Engine SDK 
+- Run the server using the dev_appserver command.
diff --git a/assets/templates/common.html b/assets/templates/common.html
index 23a897d..b494dd8 100644
--- a/assets/templates/common.html
+++ b/assets/templates/common.html
@@ -5,5 +5,5 @@
 {{end}}
 
 {{define "commonFooter"}}
-<p><a href="/">Home</a> | <a href="mailto:{{contactEmail}}">Feedback</a> | <a href="https://github.com/garyburd/lintapp/issues">Website Issues</a>
+<p><a href="/">Home</a> | <a href="mailto:{{contactEmail}}">Feedback</a> | <a href="https://github.com/golang/gddo/issues">Website Issues</a>
 {{end}}
diff --git a/config.go.template b/config.go.template
index 713e9bd..e3579fa 100644
--- a/config.go.template
+++ b/config.go.template
@@ -1,9 +1,5 @@
 package lintapp
 
-import (
-	"github.com/garyburd/gosrc"
-)
-
 func init() {
 	// Register an application at https://github.com/settings/applications/new
 	// and enter the client ID and client secret here.
diff --git a/main.go b/main.go
index 5e3ca8d..b969d5b 100644
--- a/main.go
+++ b/main.go
@@ -1,16 +1,8 @@
-// Copyright 2013 Gary Burd
+// Copyright 2013 The Go Authors. All rights reserved.
 //
-// Licensed under the Apache License, Version 2.0 (the "License"): you may
-// not use this file except in compliance with the License. You may obtain
-// a copy of the License at
-//
-//     http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-// License for the specific language governing permissions and limitations
-// under the License.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file or at
+// https://developers.google.com/open-source/licenses/bsd.
 
 // Package lintapp implements the go-lint.appspot.com server.
 package lintapp