Created
February 25, 2017 12:38
-
-
Save hseritt/1a9950abfc4baf39e9513c5ca0174b2e to your computer and use it in GitHub Desktop.
Generate epydocs (documentation)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
outputdir="docs/code" | |
export DJANGO_SETTINGS_MODULE='myproject.settings' | |
epydoc --html --parse-only --name myprojectname --inheritance grouped apps myprojectname scripts -o $outputdir/ | |
cp static/admin/css/base.css $outputdir/epydoc.css |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment