58 lines
1.2 KiB
YAML
58 lines
1.2 KiB
YAML
site_name: Boilerplate
|
|
site_description: Modern Python 3.13 micro-service starter
|
|
site_author: CleverThis
|
|
site_url: https://cleverthis.github.io/boilerplate
|
|
|
|
repo_name: cleverthis/boilerplate
|
|
repo_url: https://git.cleverthis.com/cleverthis/base/base-python
|
|
|
|
theme:
|
|
name: material
|
|
palette:
|
|
- scheme: default
|
|
primary: indigo
|
|
accent: indigo
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: Switch to dark mode
|
|
- scheme: slate
|
|
primary: indigo
|
|
accent: indigo
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: Switch to light mode
|
|
features:
|
|
- content.code.annotate
|
|
- content.code.copy
|
|
- navigation.sections
|
|
- navigation.tabs
|
|
- navigation.top
|
|
- search.highlight
|
|
- search.share
|
|
|
|
plugins:
|
|
- search
|
|
- mike:
|
|
version_selector: true
|
|
|
|
extra:
|
|
version:
|
|
provider: mike
|
|
|
|
markdown_extensions:
|
|
- admonition
|
|
- codehilite
|
|
- pymdownx.details
|
|
- pymdownx.superfences
|
|
- pymdownx.tabbed:
|
|
alternate_style: true
|
|
- toc:
|
|
permalink: true
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- Development: devcontainer.md
|
|
- Behaviour: behaviour.md
|
|
- API: api.md
|
|
- Deployment: deployment.md
|
|
- Troubleshooting: troubleshooting.md |