-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
159 lines (150 loc) · 4.55 KB
/
mkdocs.yml
File metadata and controls
159 lines (150 loc) · 4.55 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
site_name: Codelogium
site_description: Developer logs, notes, and learning paths
site_url: https://codelogium.github.io
repo_url: https://github.com/alfahami/codelogium.github.io
repo_name: alfahami/codelogium
theme:
name: material
language: en
# custom_dir: overrides
#logo: assets/logo.png
#favicon: assets/favicon.ico
palette:
- scheme: default
primary: teal
accent: teal
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: teal
accent: teal
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- navigation.top
- navigation.tabs
- navigation.indexes
- content.tabs.link
- content.code.copy
- search.suggest
- content.code.annotate
- search.highlight
markdown_extensions:
- toc:
title: "Table of content"
permalink: "¶"
permalink_title: Permalink
toc_depth: "1-6"
- admonition
- pymdownx.superfences
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.details
- attr_list
- tables
nav:
- Home: index.md
- Network:
- Overview: network/index.md
- Basic Network Concepts (Part I): network/basic-network1.md
- Databases:
- Overview: databases/index.md
- Postgres vs H2: databases/postgres-vs-h2.md
- Hibernate Tips: databases/hibernate-tips.md
- Java:
- java/index.md
- java/generic-types.md
- Spring:
- Overview: spring/index.md
- JWT Auth: spring/jwt-auth.md
- Projects:
- Overview: projects/index.md
- Lab:
- Overview: lab/index.md
- Git:
- Overview: lab/git/index.md
- Basics & Daily Commands: lab/git/basics.md
- Branches, Stash & Undoing: lab/git/branching-stash.md
- Remotes & Workflows: lab/git/remotes-workflows.md
- Issues & Troubleshooting: lab/git/issues.md
- Blog:
- Overview: blog/index.md
- MkDocs Creation Date Bug: blog/posts/mkdocs-creation-date-debug.md
- Categories:
- Overview: categories/index.md
- Java: categories/java.md
- Programming: categories/programming.md
- OOP: categories/oop.md
- Git: categories/git.md
- Workflow: categories/workflow.md
extra:
pagetime: 'on'
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/alfahami
name: alfahami on Github
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/alfahami
name: alfahami on LinkedIn
- icon: fontawesome/brands/twitter
link: https://twitter.com/al_fahami
name: alfahami on X (ex Twitter)
analytics:
provider: google
property: G-9L21ZFFY2J
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! Help us improve this page by
using our <a href="..." target="_blank" rel="noopener">feedback form</a>.
copyright: © 2025 <a href="https://codelogium.github.io/">Codelogium</a> • Crafted with curiosity accompanied by a cup of tea ☕<br>
Built with ♥ using <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank">MkDocs Material</a>
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascript/extra.js
plugins:
- search:
- awesome-pages:
- blog:
authors: true
- blogging:
- categories:
enabled: true
- tags
# - social: can be installed later preferably in a linux machine
- social:
enabled: !ENV [CI, false]
- git-committers:
repository: codelogium/codelogium.github.io
branch: main
token: !ENV MKDOCS_GIT_COMMITTERS_APIKEY
enabled: true
- git-revision-date-localized:
fallback_to_build_date: true
type: timeago
enable_creation_date: true
enable_git_follow: true
exclude:
- index.md
- network/index.md
- java/index.md
- spring/index.md
- databases/index.md
- lab/index.md
- projects/index.md