-
Notifications
You must be signed in to change notification settings - Fork 9
/
mkdocs.yml
44 lines (41 loc) · 1.25 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
site_name: "Upswarm"
site_url: http://zizaco.github.io/upswarm
repo_url: https://github.com/zizaco/upswarm
site_dir: .site
theme: readthedocs
extra_css: [docs.css]
pages:
- 'Home': 'index.md'
- 'Getting Started':
- 'Basics': 'basics.md'
- 'Core Concepts': 'core_concepts.md'
- 'Dev Environment': 'dev_environment.md'
- 'Step-by-step Guide': 'step_by_step.md'
- 'HTTP Basics':
- 'HTTP Server': 'http_basics.md'
- 'Routing': 'features.md'
- 'Controllers': 'features.md'
- 'Middleware': 'features.md'
- 'Requests': 'features.md'
- 'Responses': 'features.md'
- 'Features':
- 'Authentication': 'features.md'
- 'Authorization': 'features.md'
- 'Cache': 'features.md'
- 'Database': 'features.md'
- 'Errors & Logging': 'features.md'
- 'Queues': 'features.md'
- 'Service Container': 'features.md'
- 'Service Providers': 'features.md'
- 'Validation': 'features.md'
- 'Advanced':
- 'Testing': 'testing.md'
- 'Multiple nodes': 'features.md'
- 'Additional information': 'info.md'
markdown_extensions:
- def_list
- fenced_code
- smarty
- admonition
- toc:
permalink: true