-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
83 lines (77 loc) · 2.14 KB
/
mkdocs.yml
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
site_name: serverless-builder
site_description: Python interface to easily generate serverless.yml files
site_author: EpsyLabs [email protected]
repo_url: https://github.com/epsylabs/serverless-builder
nav:
- About: index.md
- Getting started: getting_started.md
- Serverless:
- Resources:
- Functions: resources/functions.md
- DynamoDB: resources/dynamodb.md
- EventBridge: resources/event_bridge.md
- IAM Roles: resources/iam.md
- API Gateway: resources/api_gateway.md
- Other resources: resources/other.md
- Features:
- Encryption: features/encryption.md
- Plugins: features/plugins.md
- Step Functions: integrations/step_functions.md
- Integrations:
- AWS Lambda Power Tools: integrations/power_tools.md
- Sentry: integrations/sentry.md
- Troposphere: integrations/troposphere.md
- Internals: concept.md
- Advanced: advanced.md
theme:
name: material
features:
- navigation.indexes
font:
text: 'IBM Plex Sans'
code: 'IBM Plex Mono'
palette:
- scheme: default
primary: 'deep purple'
accent: 'red'
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: teal
toggle:
icon: material/toggle-switch
name: Switch to light mode
markdown_extensions:
- toc:
permalink: True
- admonition
- smarty
- meta
- wikilinks
- codehilite:
linenums: True
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: True
- pymdownx.tilde
extra:
social:
- icon: 'fontawesome/brands/github'
link: 'https://github.com/epsylabs/serverless-builder'
copyright: Copyright EpsyHealth © 2022 All rights reserved
plugins:
- search