I am trying to elegantly setup my Sphinx to work with GitHub pages. I want to maintain separate build
and source
directories (seen in the directory tree below).
repository
├── docs
│ ├── build
│ │ └── index.html
│ ├── Makefile
│ └── source
| | ...
|
├── README.md
└── src
| ...
I have the GitHub repository set to look for the index.html
in /docs/
.
Question: Is there a way to place a symbolic link or an index.html
in the root of /docs/ that points to /docs/build/index.html
?