Update version number in container-tag for F Maintenance Release
[sim/a1-interface.git] / docs / conf.py
1 from docs_conf.conf import *
2
3 branch = 'latest'
4
5 language = 'en'
6
7 linkcheck_ignore = [
8     'http://localhost.*',
9     'http://127.0.0.1.*',
10     'https://gerrit.o-ran-sc.org.*',
11     './KAFKA_DISPATCHER_api.html',
12     './EXT_SRV_api.html', #Generated file that doesn't exist at link check.
13 ]
14
15 extensions = ['sphinxcontrib.redoc']
16
17 redoc = [
18             {
19                 'name': 'CALLOUT SERVER',
20                 'page': 'EXT_SRV_api',
21                 'spec': '../near-rt-ric-simulator/test/EXT_SRV/api/EXT_SRV_api.yaml',
22                 'embed': True,
23             },
24             {
25                 'name': 'Kafka Message Dispatcher',
26                 'page': 'KAFKA_DISPATCHER_api',
27                 'spec': '../near-rt-ric-simulator/test/KAFKA_DISPATCHER/api/KAFKA_DISPATCHER_api.yaml',
28                 'embed': True,
29             },
30         ]
31
32 redoc_uri = 'https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js'