-
Notifications
You must be signed in to change notification settings - Fork 134
/
mkdocs.yml
52 lines (47 loc) · 1.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
site_name: Deptrac
site_description: "Deptrac: keep your architecture clean"
site_url: https://qossmic.github.io/deptrac
repo_name: 'qossmic/deptrac'
repo_url: 'https://github.com/qossmic/deptrac'
edit_uri: ''
docs_dir: docs
nav:
- Home: index.md
- Documentation:
- Concepts: concepts.md
- Configuration: configuration.md
- Collectors: collectors.md
- Formatters: formatters.md
- Debugging: debugging.md
- Backwards Compatibility: bc_policy.md
- Extending Deptrac: extending_deptrac.md
- Upgrade Guide: upgrade.md
- Code of Conduct: CODE_OF_CONDUCT.md
- Contributing: CONTRIBUTING.md
- Security: SECURITY.md
- Blog:
- blog.md
- 'Dynamic Deptrac configuration with PHP config file': blog/2023-05-11_PHP_configuration.md
theme:
name: material
logo: qossmic.png
extra:
homepage: https://qossmic.com
icon:
repo: fontawesome/brands/github
palette:
primary: indigo
accent: blue
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- toc.integrate
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences