scripts/build_epydocs.sh
author Todd Larsen <tlarsen@google.com>
Mon, 11 Aug 2008 16:44:47 +0000
changeset 65 d254d4577c30
parent 10 56109601507d
child 130 63248d9db484
permissions -rwxr-xr-x
Move app.yaml to app.yaml.template and add app.yaml to svn:ignore in trunk/app. Each Google App Engine instance needs its own "application:" ID, and this should *not* be committed into the SoC SVN repository in trunk/app. (Individual deployment branches *will* have app.yaml files with Google App Engine application IDs in them, just not trunk/app.)

#!/bin/bash

echo "Running epydoc..."
echo $1

epydoc --html -v --show-private --inheritance=included --graph=all \
  -o ../../wiki/html/epydoc $1

echo "Done."