-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
133 lines (119 loc) · 3.42 KB
/
Copy pathmkdocs.yml
File metadata and controls
133 lines (119 loc) · 3.42 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
# https://github.com/mkdocs/catalog
site_name: MinimalLambda
site_description: A modern .NET framework for building AWS Lambda functions using familiar .NET patterns.
site_url: https://layeredcraft.github.io/minimal-lambda/
site_author: Jonas Ha
repo_name: LayeredCraft/minimal-lambda
repo_url: https://github.com/LayeredCraft/minimal-lambda
edit_uri: edit/main/docs/
theme:
name: material
features:
- content.code.copy
- content.tabs.link
- navigation.footer
- navigation.top
- navigation.tabs
- navigation.expand
- navigation.path
- navigation.indexes
- navigation.tracking
- toc.follow
- navigation.instant
- search.highlight
- search.share
- search.suggest
- content.code.annotate
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/lightbulb-auto
name: Switch to light mode
# Palette toggle for light mode
- scheme: default
primary: orange
accent: orange
media: "(prefers-color-scheme: light)"
toggle:
icon: material/lightbulb
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: black
accent: orange
media: "(prefers-color-scheme: dark)"
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
font:
code: JetBrains Mono
markdown_extensions:
# Python Markdown extensions
- attr_list
- md_in_html
- tables
# PyMdown Extensions
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.details
- admonition
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- toc:
permalink: true
permalink_title: Anchor link to this section for reference
watch:
- ./docs/
exclude_docs: |
AGENTS.md
CLAUDE.md
nav:
- Home:
- index.md
- Getting Started:
- getting-started/index.md
- Installation: getting-started/installation.md
- Project Templates: getting-started/templates.md
- Your First Lambda: getting-started/first-lambda.md
- Core Concepts: getting-started/core-concepts.md
- Guides:
- guides/index.md
- Dependency Injection: guides/dependency-injection.md
- Middleware: guides/middleware.md
- Lifecycle Management: guides/lifecycle-management.md
- Handler Registration: guides/handler-registration.md
- Hosting & Builder: guides/hosting.md
- Configuration: guides/configuration.md
- Error Handling: guides/error-handling.md
- Testing: guides/testing.md
- Examples (Coming Soon):
- examples/index.md
- Features:
- features/index.md
- Envelopes: features/envelopes.md
- OpenTelemetry: features/open_telemetry.md
- Advanced (Coming Soon):
- advanced/index.md
plugins:
- search
- optimize:
print_gain_summary: false
extra_css:
- stylesheets/extra.css