59016f1cb2663a41ce92cf9b17081c97b9bdabfd
[optf/osdf.git] / docs / conf.py
1 from docs_conf.conf import *
2
3 branch = 'latest'
4 master_doc = 'index'
5
6 linkcheck_ignore = [
7     'http://localhost',
8 ]
9
10 extensions = [
11    'sphinxcontrib.redoc',
12 ]
13
14 redoc = [
15                     {
16                         'name': 'OSDF API',
17                         'page': './osdf-api',
18                         'spec': './api/swagger/oof-osdf-has-api.json',
19                         'embed': True,
20                     },
21                     {
22                         'name': 'OPTENG API',
23                         'page': './opteng-api',
24                         'spec': './api/swagger/oof-osdf-has-api.json',
25                         'embed': True,
26                     }
27         ]
28
29 redoc_uri = 'https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js'
30
31 intersphinx_mapping = {}
32
33 html_last_updated_fmt = '%d-%b-%y %H:%M'
34
35 def setup(app):
36     app.add_stylesheet("css/ribbon.css")