flask-ndb-api icon indicating copy to clipboard operation
flask-ndb-api copied to clipboard

add sphinx docs to repo

Open gregorynicholas opened this issue 10 years ago • 0 comments

  • ex: https://github.com/gregorynicholas/flask-funktional-gae/tree/master/docs

build_docs.sh:

#!/bin/sh

touch .nojekyll
cd ./docs
make html
cd ../

git checkout gh-pages

cp -rf ./docs/_build/html/* ./

git add *.html searchindex.js objects.inv .buildinfo _static/ _sources/
git commit -m "updated docs html build."
git pull origin gh-pages
git push origin gh-pages

git checkout -f master

gregorynicholas avatar Jun 09 '15 07:06 gregorynicholas