-
-
Notifications
You must be signed in to change notification settings - Fork 255
/
sidebars.ts
49 lines (47 loc) · 1.11 KB
/
sidebars.ts
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
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
docs: {
Introduction: ["welcome", "whatis"],
Basics: [
"getting-started",
"application",
"server",
"extractors",
"handlers",
],
Advanced: [
"errors",
"url-dispatch",
"request",
"response",
"testing",
"middleware",
"static-files",
],
Protocols: ["websockets", "http2"],
Patterns: ["autoreload", "databases", "shuttle"],
Diagrams: ["http_server_init", "conn_lifecycle"],
Actix: [
"actix/sec-0-quick-start",
"actix/sec-1-getting-started",
"actix/sec-2-actor",
"actix/sec-3-address",
"actix/sec-4-context",
"actix/sec-5-arbiter",
"actix/sec-6-sync-arbiter",
],
"API Documentation": [
{
type: "link",
label: "actix",
href: "https://docs.rs/actix/latest/actix/",
},
{
type: "link",
label: "actix-web",
href: "https://docs.rs/actix-web/latest/actix_web/",
},
],
},
};
export default sidebars;