Files
subdomain_server/docs/conf.py
2025-10-01 20:27:37 -04:00

19 lines
481 B
Python

import os
import sys
# Set project root directory for Sphinx documentation
sys.path.insert(0, os.path.abspath('../src'))
# Project information
project = 'subdomain_server'
author = 'BipolarExpedition({authorName})'
release = '0.0.1'
# Configure other options as necessary, such as:
html_theme = 'alabaster' # Example, can choose others like 'sphinx_rtd_theme'
# simply add the extension to your list of extensions
extensions = ['myst_parser']
source_suffix = ['.rst', '.md']