mirror of
https://github.com/chatmail/relay.git
synced 2026-08-13 20:10:51 +00:00
33f9cddb1b
This is designed to help implement self-updating APKs (and later other clients), see counterpart https://github.com/chatmail/core/pull/8557
48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
# Configuration file for the Sphinx documentation builder.
|
|
#
|
|
# For the full list of built-in configuration values, see the documentation:
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
|
|
# -- Project information -----------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
|
|
|
project = 'chatmail relay documentation'
|
|
copyright = '2025, chatmail collective'
|
|
author = 'chatmail collective'
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
|
|
|
extensions = [
|
|
#'sphinx.ext.autodoc',
|
|
#'sphinx.ext.viewdoc',
|
|
'sphinxcontrib.mermaid',
|
|
]
|
|
|
|
templates_path = ['_templates']
|
|
exclude_patterns = []
|
|
|
|
linkcheck_ignore = [
|
|
# only resolves once the file is merged to main
|
|
r"https://github\.com/chatmail/relay/blob/main/chatmaild/src/chatmaild/defaults/appversions\.json",
|
|
]
|
|
|
|
|
|
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
|
|
|
html_theme = 'furo'
|
|
html_static_path = ['_static']
|
|
html_css_files = [
|
|
"custom.css",
|
|
]
|
|
|
|
html_title = "chatmail relay documentation"
|
|
#html_short_title = f"chatmail-{release}"
|
|
|
|
html_logo = "_static/chatmail.svg"
|
|
|
|
|