elinuxhenrik | 1cd0f2e | 2022-03-28 09:48:52 +0200 | [diff] [blame^] | 1 | from docs_conf.conf import * |
| 2 | |
| 3 | #branch configuration |
| 4 | |
| 5 | branch = 'latest' |
| 6 | |
| 7 | linkcheck_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 | |
| 14 | extensions = ['sphinxcontrib.redoc', 'sphinx.ext.intersphinx',] |
| 15 | |
| 16 | redoc = [ |
| 17 | { |
| 18 | 'name': 'DMaaP Adapter API', |
| 19 | 'page': 'dmaap-adapter-api', |
| 20 | 'spec': '../api/api.json', |
| 21 | } |
| 22 | ] |
| 23 | |
| 24 | redoc_uri = 'https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js' |