-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
112 lines (105 loc) · 3.23 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
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
site_name: balcony
repo_url: https://github.com/oguzhan-yilmaz/balcony
repo_name: oguzhan-yilmaz/balcony
nav:
- Home: index.md
- Installation & QuickStart: quickstart.md
- Cookbook: cookbook.md
- Feature Gallery: feature-gifs.md
- 'Comparing boto3 and balcony': comparing-boto3-and-balcony.md
- 'Run on Docker': docker.md
- 'As a Python library': as-a-python-library.md
- 'balcony terraform-import':
- 'About Import Configurations': about-terraform-import.md
- 'Generating Terraform Import Blocks': terraform-import.md
- 'Generate Terraform code with Docker': terraform-import-docker.md
- 'Terraform Import Configuration Wizard': terraform-import-wizard.md
- 'Terraform Import Support Matrix': terraform-import-support-matrix.md
- 'Config Env Vars': environment-variables.md
- 'How it Works?':
- 'About boto3': how-it-works/about-boto3.md
- 'About balcony': how-it-works/about-balcony.md
- Development:
- development/developing-custom-resource-nodes.md
- development/about-relations.md
- development/yaml-resource-nodes.md
- development/custom-resource-nodes.md
- 'Diagram: Reading Operations': development/diagram-of-reading-operations.md
- Reference:
- 'ResourceNode': reference/resource-node.md
- 'YamlResourceNode': reference/yaml-resource-node.md
- 'ServiceNode': reference/service-node.md
- 'ServiceReader': reference/service-reader.md
- reference/relations.md
- reference/registries.md
- reference/aws.md
- reference/yaml_configuration.md
- 'Utilities':
- reference/utils.md
- reference/botocore_utils.md
- 'Star History': misc.md
theme:
name: material
language: en
font:
text: Roboto
features:
- navigation.tracking
- navigation.expand
- content.code.copy
- content.tabs.link
- search.suggest
- search.highlight
palette:
# Palette toggle for light mode
- scheme: default
media: "(prefers-color-scheme: light)"
primary: black
accent: green
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: black
accent: green
toggle:
icon: material/weather-sunny
name: Switch to light mode
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/oguzhan-yilmaz
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/oguzhan-y/
- icon: fontawesome/brands/twitter
link: https://twitter.com/oguzhan_y_
markdown_extensions:
- tables
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- admonition
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- def_list
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- attr_list
- md_in_html
plugins:
- search
- mkdocstrings
- autorefs