From: Aric Gardner Date: Fri, 6 Sep 2019 00:51:51 +0000 (-0400) Subject: Add master_doc value index to conf.py X-Git-Tag: R2~25 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=425ca107bd805dda906b62fc2b03a6f3c815b8a1;p=portal%2Fric-dashboard.git Add master_doc value index to conf.py Not sure why but read the docs is throwing an error: Running Sphinx v1.8.5 loading translations [en]... done making output directory... building [mo]: targets for 0 po files that are out of date building [readthedocs]: targets for 5 source files that are out of date updating environment: 5 added, 0 changed, 0 removed reading sources... [ 20%] config-deploy reading sources... [ 40%] developer-guide reading sources... [ 60%] index reading sources... [ 80%] overview reading sources... [100%] release-notes Sphinx error: master file /home/docs/checkouts/readthedocs.org/user_builds\ /o-ran-sc-portal-ric-dashboard-test/checkouts/master/docs/contents.rst not found I think this will fix it.. (just a quick google didnt look too hard) Signed-off-by: Aric Gardner Change-Id: If56b5da595b47461111a03ef88e7178b85dc1f00 --- diff --git a/docs/conf.py b/docs/conf.py index 4651a2b8..592a5736 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1 +1,2 @@ from docs_conf import * +master_doc = 'index'