blob: 4cc4265698e79343f19e389f3e897bbe5b9b3656 [file] [log] [blame]
elinuxhenrik1cd0f2e2022-03-28 09:48:52 +02001from docs_conf.conf import *
2
3#branch configuration
4
5branch = 'latest'
6
7linkcheck_ignore = [
8 'http://localhost.*',
9 'http://127.0.0.1.*',
10 'https://gerrit.o-ran-sc.org.*',
11 './dmaap-adapter-api.html', #Generated file that doesn't exist at link check.
12]
13
14extensions = ['sphinxcontrib.redoc', 'sphinx.ext.intersphinx',]
15
16redoc = [
17 {
18 'name': 'DMaaP Adapter API',
19 'page': 'dmaap-adapter-api',
20 'spec': '../api/api.json',
21 }
22 ]
23
24redoc_uri = 'https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js'