You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Captain Dero a390b5e235 Status update release 1 6 years ago
..
README.godoc-app Status update release 1 6 years ago
appinit.go Status update release 1 6 years ago
autocert.go Status update release 1 6 years ago
blog.go Status update release 1 6 years ago
codewalk.go Status update release 1 6 years ago
dl.go Status update release 1 6 years ago
doc.go Status update release 1 6 years ago
godoc19_test.go Status update release 1 6 years ago
godoc_test.go Status update release 1 6 years ago
handlers.go Status update release 1 6 years ago
index.go Status update release 1 6 years ago
main.go Status update release 1 6 years ago
play.go Status update release 1 6 years ago
remotesearch.go Status update release 1 6 years ago
setup-godoc-app.bash Status update release 1 6 years ago
x.go Status update release 1 6 years ago

README.godoc-app

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

* Godoc sources at tip inside $GOPATH
(go get -d golang.org/x/tools/cmd/godoc)


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
golang.org/x/tools/cmd/godoc
godoc.zip
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


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

To configure godoc, run

bash setup-godoc-app.bash

to prepare an $APPDIR as described above. See the script for details on usage.

To run godoc locally, using the App Engine development server, run

<path to go_appengine>/dev_appserver.py $APPDIR

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