Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MKdocs-readTheDocs: How to set the Home page?

Yes, this is a rookie question, but its not clear to me from the documentation how to set up the home page. I get a 404 on the home page. Not sure what its missing. Any help is really appreciated. Using git pages to publish (user name removed), the URL https://user-name.github.io/aiopslabs/ returns a 404, if I click on the sections and navigation works fine, just the home page is missing.

This is my mkdocs.yml

site_name: mySite
site_url: https://<user-name>.github.io/aiopslabs/
nav:
    - Start Here: integration.md
    - Log Anomaly Training: log-anomaly.md
    - Log Anomaly Inference: inference.md
    - About: about.md
theme: readthedocs
like image 515
Jorge Avatar asked Sep 12 '25 08:09

Jorge


1 Answers

Thanks Zoran, my index.md file was missing. Adding this file created the home page.

like image 126
Jorge Avatar answered Sep 16 '25 09:09

Jorge