-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmkdocs.yml
More file actions
163 lines (157 loc) · 5.64 KB
/
mkdocs.yml
File metadata and controls
163 lines (157 loc) · 5.64 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# Reference: https://github.com/squidfunk/mkdocs-material/blob/master/mkdocs.yml
# Project information
site_name: Awesome Cloud Computing
site_url: https://awesome-clouds.com
site_author: Daniel Cristho
# Repository
repo_name: TzuriLabs/awesome-cloud-computing
repo_url: https://github.com/TzuriLabs/awesome-cloud-computing
edit_uri: edit/main/docs/
# Configuration
theme:
name: material
language: en
logo: assets/awesome-logo.svg
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- search.highlight
- search.share
- search.suggest
- content.code.copy
- content.action.edit
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: teal
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: teal
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
icon:
repo: fontawesome/brands/github
edit: material/pencil
# Plugins
plugins:
- search:
lang:
- en
- id
- i18n:
docs_structure: folder
fallback_to_default: true
reconfigure_material: true
reconfigure_search: true
languages:
- locale: en
default: true
name: English
build: true
nav:
- Home: index.md
- Learning Resources:
- Overview: learning/index.md
- Basic Concepts: learning/basic-concepts.md
- Books: learning/books.md
- Tutorials: learning/tutorials.md
- Certifications: learning/certifications.md
- Platforms: platforms.md
- Tools & Software:
- Overview: tools/index.md
- Infrastructure as Code: tools/infrastructure-as-code.md
- Multi-cloud Management: tools/multi-cloud-management.md
- Containerization: tools/containerization.md
- Serverless Frameworks: tools/serverless-frameworks.md
- Cloud Migration: tools/cloud-migration.md
- Disaster Recovery: tools/disaster-recovery.md
- FinOps & Cost Management: tools/finops-cost-management.md
- Edge Computing: tools/edge-computing.md
- Monitoring: tools/monitoring.md
- Logging: tools/logging.md
- Best Practices:
- Overview: best-practices/index.md
- Cost Optimization: best-practices/cost-optimization.md
- Scalability & Performance: best-practices/scalability-performance.md
- Security:
- Overview: security/index.md
- Identity & Access Management: security/iam.md
- Threat Detection: security/threat-detection.md
- Secret Management: security/secret-management.md
- Compliance & Governance: security/compliance-governance.md
- Community: community/index.md
- Emerging Trends: trends/index.md
- Contributing: contributing.md
- locale: id
name: Bahasa Indonesia
build: true
nav:
- Beranda: index.md
- Sumber Belajar:
- Ringkasan: learning/index.md
- Konsep Dasar: learning/basic-concepts.md
- Buku: learning/books.md
- Tutorial: learning/tutorials.md
- Sertifikasi: learning/certifications.md
- Platform: platforms.md
- Alat & Perangkat Lunak:
- Ringkasan: tools/index.md
- Infrastructure as Code: tools/infrastructure-as-code.md
- Manajemen Multi-cloud: tools/multi-cloud-management.md
- Kontainerisasi: tools/containerization.md
- Framework Serverless: tools/serverless-frameworks.md
- Migrasi Cloud: tools/cloud-migration.md
- Pemulihan Bencana: tools/disaster-recovery.md
- FinOps & Manajemen Biaya: tools/finops-cost-management.md
- Edge Computing: tools/edge-computing.md
- Monitoring: tools/monitoring.md
- Logging: tools/logging.md
- Praktik Terbaik:
- Ringkasan: best-practices/index.md
- Optimasi Biaya: best-practices/cost-optimization.md
- Skalabilitas & Performa: best-practices/scalability-performance.md
- Keamanan:
- Ringkasan: security/index.md
- Manajemen Identitas & Akses: security/iam.md
- Deteksi Ancaman: security/threat-detection.md
- Manajemen Secret: security/secret-management.md
- Kepatuhan & Tata Kelola: security/compliance-governance.md
- Komunitas: community/index.md
- Tren Terkini: trends/index.md
- Berkontribusi: contributing.md
- minify:
minify_html: true
# Extensions
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.emoji:
emoji_generator: !!python/name:material.extensions.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
- tables
- attr_list
- md_in_html
- toc:
permalink: true
# Copyright
copyright: Copyright © 2024-Present - Licensed under MIT License