-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
mkdocs.yml
50 lines (46 loc) · 1.29 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
site_name: Framework X documentation
site_url: https://framework-x.org/docs/
site_dir: build/docs
repo_url: https://github.com/clue/framework-x
repo_name: clue/framework-x
edit_uri: "edit/main/docs/"
theme:
name: material
features:
- navigation.sections
icon:
repo: fontawesome/brands/github
markdown_extensions:
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight
- pymdownx.superfences
- toc:
permalink: true
nav:
- Getting Started:
- getting-started/quickstart.md
- getting-started/philosophy.md
- getting-started/community.md
- Best Practices:
- "Controller classes": best-practices/controllers.md
- best-practices/testing.md
- best-practices/deployment.md
- API:
- api/app.md
- api/middleware.md
- api/request.md
- api/response.md
- Async:
- async/fibers.md
- async/coroutines.md
- async/promises.md
- Integrations:
- integrations/database.md
- "⚠ Filesystem": integrations/filesystem.md
- "⚠ Child processes": integrations/child-processes.md
- "⚠ Streaming": integrations/streaming.md
- "⚠ Authentication": integrations/authentication.md
- "⚠ Sessions": integrations/sessions.md
- "⚠ Templates": integrations/templates.md
- "⚠ Queueing": integrations/queueing.md