You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per the steps explained in Using Sphinx’s Makefile, PROJECT=dev make html can be used to build HTML locally. But, how to manage this on publishing to ReadtheDocs?
Say, I want to build and publish updates to dev and/or user projects, should I have to define the commands twice for 2 different projects? Something like below:
# Put your default project here.
PROJECT ?= user
BUILDDIR = _build/$(PROJECT)
PROJECT ?= dev
BUILDDIR = _build/$(PROJECT)
After publishing to ReadtheDocs, what does the URL for 2 different projects look like:
Is it:
readthedocs-hosted.com/en/latest/user/
readthedocs-hosted.com/en/latest/dev/ ?
The text was updated successfully, but these errors were encountered:
sachin-suresh-rapyuta
changed the title
How does the URL look like with multi projects after modifying makefile?
How does ReadtheDocs URL look like with multi projects after modifying makefile?
Nov 6, 2022
As per the steps explained in Using Sphinx’s Makefile,
PROJECT=dev make html
can be used to build HTML locally. But, how to manage this on publishing to ReadtheDocs?Say, I want to build and publish updates to
dev
and/oruser
projects, should I have to define the commands twice for 2 different projects? Something like below:After publishing to ReadtheDocs, what does the URL for 2 different projects look like:
Is it:
readthedocs-hosted.com/en/latest/user/
readthedocs-hosted.com/en/latest/dev/
?The text was updated successfully, but these errors were encountered: