From 124e3e6dd12aba3232a8a98fbee140c6042b20e0 Mon Sep 17 00:00:00 2001 From: josephthaliath Date: Tue, 6 Dec 2022 12:04:58 +0530 Subject: [PATCH] Installation documentation update Issue-Id: AIMLFW-12 Signed-off-by: josephthaliath Change-Id: I5dc04ac1351c4fa9ee97a485e276e004990d6c17 --- .gitignore | 3 +++ .readthedocs.yaml | 16 ++++++++++++++++ docs/conf.py | 4 +++- 3 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 .readthedocs.yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9c14461 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# documentation +.tox +docs/_build/ diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..095222a --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,16 @@ +--- +version: 2 + +formats: + - htmlzip + +build: + image: latest + +python: + version: 3.7 + install: + - requirements: docs/requirements-docs.txt + +sphinx: + configuration: docs/conf.py diff --git a/docs/conf.py b/docs/conf.py index d96be56..50de2d8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,5 +19,7 @@ from docs_conf.conf import * linkcheck_ignore = [ - 'http://localhost', + 'http://localhost.*', + 'http://127.0.0.1.*', + 'https://gerrit.o-ran-sc.org.*' ]