1
0
mirror of https://github.com/golang/go synced 2024-10-01 01:18:32 -06:00
go/cmd/godoc
2013-08-01 17:37:20 +10:00
..
template go.talks/cmd/godoc: add jquery.js and style.css 2013-08-01 17:36:56 +10:00
appinit.go go.tools/cmd/godoc: start indexer in app engine mode 2013-08-01 17:37:20 +10:00
codewalk.go godoc: move search from cmd to the package 2013-07-19 14:02:03 +10:00
doc.go go.tools/cmd/godoc: copy godoc from core reposistory 2013-07-17 14:02:35 +10:00
godoc_test.go cmd/godoc: Fix reg test on Windows. 2013-07-19 10:31:12 +10:00
handlers.go go.tools/cmd/godoc: update appinit.go to use new godoc packages 2013-07-30 14:23:23 +10:00
main.go go.tools/cmd/godoc: copy templates from $GOROOT/lib/godoc 2013-08-01 11:01:10 +10:00
play.go go.tools/cmd/godoc: use playground package from go.tools 2013-07-24 17:25:24 +10:00
README.godoc-app go.tools/cmd/godoc: copy godoc from core reposistory 2013-07-17 14:02:35 +10:00
remotesearch.go go.tools/cmd/godoc: update appinit.go to use new godoc packages 2013-07-30 14:23:23 +10:00
setup-godoc-app.bash go.tools/cmd/godoc: copy godoc from core reposistory 2013-07-17 14:02:35 +10:00

Copyright 2011 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.

godoc on appengine
------------------

Prerequisites
-------------

* Go appengine SDK
  https://developers.google.com/appengine/downloads#Google_App_Engine_SDK_for_Go

* Go sources at tip under $GOROOT


Directory structure
-------------------

* Let $APPDIR be the directory containing the app engine files.
  (e.g., $APPDIR=$HOME/godoc-app)

* $APPDIR contains the following entries (this may change depending on
  app-engine release and version of godoc):

	app.yaml
	godoc.zip
	godoc/
	index.split.*

* The app.yaml file is set up per app engine documentation.
  For instance:

	application: godoc-app
	version: 1
	runtime: go
	api_version: go1

	handlers:
	- url: /.*
	  script: _go_app

* The godoc/ directory contains a copy of the files under $GOROOT/src/cmd/godoc
  with doc.go excluded (it belongs to pseudo-package "documentation")


Configuring and running godoc
-----------------------------

To configure godoc, run

	bash setup-godoc-app.bash

to create the godoc.zip, index.split.*, and godoc/appconfig.go files
based on $GOROOT and $APPDIR. See the script for details on usage.

To run godoc locally, using the app-engine emulator, run

	<path to google_appengine>/dev_appserver.py $APPDIR

godoc should come up at http://localhost:8080 .