-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
99 lines (96 loc) · 2.47 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
site_name: "DOX"
repo_url: https://github.com/dartondox/dox-core
site_url: https://dartondox.dev
copyright: Copyright © 2023 - 2024 Dart On Dox
extra_css:
- assets/style.css
extra_javascript:
- assets/script.js
extra:
analytics:
provider: google
property: G-GY82BXCJF8
social:
- icon: fontawesome/brands/github
name: Github
link: https://github.com/dartondox
- icon: fontawesome/brands/discord
link: https://discord.com/invite/pBfWrsvBSV
name: Discord
theme:
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.expand
font:
text: Inclusive Sans
favicon: assets/favicon.png
logo: assets/logo.svg
icon:
repo: fontawesome/brands/github
name: material
palette:
# Palette toggle for dark mode
- scheme: default
primary: custom
toggle:
icon: material/brightness-4
name: Switch to dark mode
# Palette toggle for light mode
- scheme: slate
primary: custom
toggle:
icon: material/brightness-7
name: Switch to light mode
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
nav:
- Getting Started:
- index.md
- the-basic/installation.md
- the-basic/routing.md
- the-basic/request.md
- the-basic/response.md
- the-basic/controller.md
- the-basic/middleware.md
- the-basic/validation.md
- Digging deeper:
- digging-deeper/cache.md
- digging-deeper/file-storage.md
- digging-deeper/env.md
- digging-deeper/isolate.md
- digging-deeper/services.md
- digging-deeper/websocket.md
- digging-deeper/dox-cli.md
- digging-deeper/deployment.md
- digging-deeper/testing.md
- Database:
- database/migration.md
- database/query-builder.md
- Model:
- database/model/index.md
- Relationship:
- database/model/relationship/has-one.md
- database/model/relationship/has-many.md
- database/model/relationship/belongs-to.md
- database/model/relationship/many-to-many.md
- database/model/serializer.md
- Security:
- security/authentication.md
- security/cors.md
- security/encryption.md
- security/hashing.md
- Others:
- others/contribute.md
- Releases:
- others/releases/core-release.md
- others/releases/query-builder-release.md