mirror of
https://github.com/joaovitoriasilva/endurain.git
synced 2026-01-09 15:57:59 -05:00
Split the monolithic developer-guide.md into three focused documents: setup-dev-env.md, authentication.md, and supported-types.md. Updated mkdocs.yml navigation to reflect the new structure, improving documentation clarity and maintainability.
36 lines
1.2 KiB
YAML
36 lines
1.2 KiB
YAML
site_name: Endurain documentation
|
|
repo_url: https://github.com/endurain-project/endurain
|
|
theme:
|
|
name: material
|
|
palette:
|
|
# Palette toggle for light mode
|
|
- media: "(prefers-color-scheme: light)"
|
|
scheme: default
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: Switch to dark mode
|
|
|
|
# Palette toggle for dark mode
|
|
- media: "(prefers-color-scheme: dark)"
|
|
scheme: slate
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: Switch to light mode
|
|
nav:
|
|
- Home: index.md
|
|
- Hosting Guide:
|
|
- Getting started easy: getting-started/getting-started.md
|
|
- Getting started advanced: getting-started/advanced-started.md
|
|
- Bare-Metal Installation Guide: getting-started/bare-metal.md
|
|
- MariaDB to Postgres migration: getting-started/maria-to-postgres-migration.md
|
|
- Features:
|
|
- Sleep Scoring: features/sleep-scoring.md
|
|
- Integrations:
|
|
- 3rd party apps: integrations/3rd-party-apps.md
|
|
- 3rd party services: integrations/3rd-party-services.md
|
|
- Developer guide:
|
|
- Setup a development environment: developer-guide/setup-dev-env.md
|
|
- Authentication: developer-guide/authentication.md
|
|
- Supported types: developer-guide/supported-types.md
|
|
- Gallery: gallery.md
|