-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
47 lines (47 loc) · 1.4 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
site_name: JavaWebStack Docs
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.details
- admonition
theme:
name: material
logo: 'assets/img/icon-dark.svg'
favicon: 'assets/img/icon-dark.svg'
features:
- navigation.instant
- navigation.tabs
- navigation.sections
- navigation.expand
copyright: '<a href="/legal-notice">Legal Notice</a><br><br>'
nav:
- Home: index.md
- Framework:
- 'framework/index.md'
- 'framework/model-binding.md'
- 'framework/modules.md'
- ORM:
- 'framework/orm/index.md'
- 'framework/orm/getting-started.md'
- 'framework/orm/config.md'
- 'framework/orm/query-dsl.md'
- 'framework/orm/dates.md'
- 'framework/orm/table-and-column-options.md'
- 'framework/orm/observer.md'
- 'framework/orm/soft-deletes.md'
- 'framework/orm/type-mapping.md'
- 'framework/orm/migrations.md'
- HTTP-Server:
- 'framework/httpserver/index.md'
- 'framework/httpserver/controller.md'
- 'framework/httpserver/middleware.md'
- 'framework/httpserver/route-parameters.md'
- 'framework/httpserver/response-transformer.md'
- 'framework/httpserver/websocket.md'
- 'framework/httpserver/testing.md'
- Validator:
- 'framework/validator/index.md'
- HTTP-Client:
- 'httpclient/index.md'
- 'httpclient/reference.md'
- 'httpclient/api-client.md'