-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
77 lines (72 loc) · 1.99 KB
/
mkdocs.yml
File metadata and controls
77 lines (72 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
site_name: Rust OAuth2 Server
site_description: Self-hosted OAuth2 and OIDC server with admin tooling, observability, and deployment guides.
site_author: Ian Lintner
repo_url: https://github.com/ianlintner/rust-oauth2-server
repo_name: ianlintner/rust-oauth2-server
strict: true
theme:
name: material
icon:
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.tracking
- navigation.top
- search.suggest
- search.highlight
- content.code.copy
- toc.follow
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep orange
accent: blue
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep orange
accent: blue
toggle:
icon: material/weather-sunny
name: Switch to light mode
extra_css:
- assets/stylesheets/extra.css
plugins:
- search
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- admonition
- pymdownx.details
- toc:
permalink: true
- attr_list
- md_in_html
nav:
- Home: index.md
- Start here:
- Quickstart: getting-started/quickstart.md
- Configuration: getting-started/configuration.md
- Use the server:
- OAuth & OIDC: usage/oauth2-oidc.md
- Admin & API: usage/admin-api.md
- Integrations: usage/integrations.md
- Examples:
- Eventing: examples/eventing.md
- Service-to-service: examples/service-to-service.md
- Operate:
- Deployment: operations/deployment.md
- Observability: operations/observability.md
- Runbooks: operations/runbooks.md
- Build & change:
- Architecture: development/architecture.md
- Extending: development/extending.md
- Testing: development/testing.md
- Contributing: development/contributing.md