-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Description
Problem
What I'd like to do is in the master
branch of my github repo, have a /docs
directory which within it, has a sphinx project. I'd like to be able to update the docs with only a cd docs
and make html
. Github pages doesn't allow you to choose arbitrary directories, otherwise I would set github pages to use /docs/build/html
.
My principal question is: is it possible to use the command make html
without creating a new html folder, but dump all the files in the directory specified by the BUILDDIR
variable in the Makefile? Is there an option in SPHINXBUILD
which will let me do this?
My more general question is: how do people in practice using github pages (from master
branch, /docs
folder) set up sphinx? I can't seem to find documentation of anyone trying to accomplish this, and the documentation to do related things (e.g. using a gh-pages
branch) seems kind of out of date.
Thanks!