-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
113 lines (112 loc) · 2.77 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
113
site_name: Tech Challenge
site_description: >-
Projeto desenvolvido para as entregas da Pós-Tech da FIAP para
Software Architecture.
copyright: Copyright © Software Architecture Team 2024
repo_name: tech-challenge
repo_url: https://github.com/software-architecture-fiap/tech-challenge
edit_uri: tree/main/docs
theme:
features:
- navigation.tabs
- navigation.top
- navigation.footer
- content.code.annotate
- content.code.copy
- content.code.select
- search.highlight
- search.share
- search.suggest
name: material
language: pt-BR
favicon: assets/favicon.ico
logo: assets/favicon.ico
palette:
- scheme: default
primary: black
accent: black
toggle:
icon: material/lightbulb
name: Modo Noturno
- scheme: slate
primary: pink
accent: white
toggle:
icon: material/lightbulb-outline
name: Modo Claro
font:
text: Roboto
code: Roboto Mono
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
auto_title: true
linenums: true
linenums_style: pymdownx-inline
line_spans: __span
pygments_lang_class: true
use_pygments: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
clickable_checkbox: true
- pymdownx.tilde
extra_css:
- stylesheets/extra.css
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
plugins:
- search
- mkdocstrings
- glightbox
extra:
alternate:
- name: Portugês
link: /home/
lang: pt-BR
nav:
- Home: "index.md"
- Docs:
- Fase 1:
- DDD: "fase_1/ddd.md"
- Event Storming: "fase_1/event_storming.md"
- Entrega: "fase_1/entrega.md"
- Passo a Passo: "fase_1/steps.md"
- Fase 2:
- Clean Code: "fase_2/clean_code.md"
- Kubernetes: "fase_2/kubernetes.md"
- Novas Rotas: "fase_2/novas_rotas.md"
- Passo a Passo: "fase_2/steps.md"
- Fase 3:
- EKS infra: "fase_3/eks_infra_cicd.md"
- CI/CD App: "fase_3/cicd_code_app.md"
- Serverless: "fase_3/sls_setup.md"
- Guia:
- Ambiente: "environment.md"