Version 0.2 finally first commit

This commit is contained in:
Doc
2025-10-01 20:27:37 -04:00
commit 71e933be72
22 changed files with 1509 additions and 0 deletions

18
docs/conf.py Normal file
View File

@@ -0,0 +1,18 @@
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']