# Configuration file for the Sphinx documentation builder. # https://www.sphinx-doc.org/en/master/usage/configuration.html project = 'awesome-selfhosted' author = 'awesome-selfhosted community' version = '1.0.0' release = '1.0.0' copyright = '2015-2023, the awesome-selfhosted community' language = 'en' html_title = 'awesome-selfhosted' html_theme = 'furo' html_show_sphinx = False html_show_search_summary = True html_copy_source = False html_show_copyright = True html_use_opensearch = 'https://nodiscc.github.io/awesome-selfhosted-html-preview/' html_favicon = '_static/favicon.ico' html_logo = '_static/logo.svg' extensions = ['myst_parser', 'sphinx_design'] source_suffix = ['.md'] templates_path = ['_templates'] exclude_patterns = [] html_static_path = ['_static'] # myst-parser configuration (https://myst-parser.readthedocs.io/en/latest/configuration.html) myst_enable_extensions = ['fieldlist'] myst_html_meta = { "description lang=en": "A list of Free Software network services and web applications which can be hosted on your own servers", "charset": "UTF-8" } # theme configuration (https://pradyunsg.me/furo/customisation/) html_theme_options = { "top_of_page_button": None, # "announcement": "Example announcement!" "source_repository": "https://github.com/awesome-selfhosted/awesome-selfhosted-data", "source_branch": "master", "footer_icons": [ { "name": "GitHub", "url": "https://github.com/awesome-selfhosted/awesome-selfhosted-data", "html": """ """, "class": "", }, ] }