Importing your docs#
Connect Read the Docs account to your GitHub account, which includes the repository of your project.
Note
You need to have the ownership of the repository to be able to create the
ReadtheDocs pages.If you are only one of the contributors of the repository, you can add the account of the owner to be one of the maintainers. (Admin>Maintainer) After the owner create the webhook in the setting page of the repository, the new Read the Docs page can be automatically built after pushing a new commit.Click on
Import a projecton the your account project dashbord. And, select the repository you want to import.If there is an error for the missing
requirement.txt, you can create one asdocs/requirements.txtand include packages you have installed while you building the documentation, such as,sphinx,myst-parser,sphinx-autoapi, etc. Then, add the file path in the.readthedocs.yamlas following:
python: install: - requirements: docs/requirements.txt
Click on
View docsto see how the page is built.See also
See this for more information about importing the documents.