-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflconfig.json
More file actions
95 lines (95 loc) · 4.04 KB
/
flconfig.json
File metadata and controls
95 lines (95 loc) · 4.04 KB
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
{
"title": "Singular: Create smarter servers with Node.js",
"basePath": "src",
"outputDir": "../docs-dist",
"rootContent": "index.md",
"exclusions": [
"CNAME"
],
"blueprint": [
{ "title": "Installation", "content": "installation/index.md" },
{ "title": "How It Works", "content": "how/index.md", "sub": [
{ "title": "Components", "content": [
"how/components/index.md",
"how/components/hooks.md"
]},
{ "title": "Services", "content": "how/services/index.md" },
{ "title": "Routers", "content": [
"how/routers/index.md",
"how/routers/route-definition.md",
"how/routers/static-files.md",
"how/routers/404.md"
]},
{ "title": "CORS", "content": "how/cors/index.md" },
{ "title": "Validation", "content": "how/validation/index.md", "sub": [
{ "title": "Headers Validation", "content": "how/validation/headers/index.md" },
{ "title": "Query Parameters Validation", "content": "how/validation/queries/index.md" },
{ "title": "Body Validation", "content": [
"how/validation/body/index.md",
"how/validation/body/custom.md"
]},
{ "title": "Custom Validation", "content": "how/validation/custom/index.md" }
]},
{ "title": "Logs", "content": [
"how/logs/index.md",
"how/logs/levels.md",
"how/logs/disk.md",
"how/logs/archiving.md",
"how/logs/built-in.md",
"how/logs/sensitive-info.md"
]},
{ "title": "Session Management", "content": [
"how/session/index.md",
"how/session/database-integration.md",
"how/session/logger-integration.md"
]},
{ "title": "Events", "content": [
"how/events/index.md",
"how/events/server-events.md"
]},
{ "title": "Error Handling", "content": "how/errors/index.md" },
{ "title": "Server Configuration", "content": "how/config/index.md" },
{ "title": "Assets", "content": "how/assets/index.md" },
{ "title": "Tests", "content": "how/tests/index.md" },
{ "title": "Project Management", "content": "how/project/index.md", "sub": [
{ "title": "Creating a Project", "content": "how/project/new.md" },
{ "title": "Adding Components", "content": "how/project/components.md" },
{ "title": "Path Aliases", "content": "how/project/paths.md" },
{ "title": "Building the Source", "content": "how/project/build.md" },
{ "title": "Launching the Server", "content": "how/project/launch.md" },
{ "title": "Running the Tests", "content": "how/project/tests.md" },
{ "title": "Generating TypeDocs", "content": "how/project/docs.md" }
]}
]},
{ "title": "Guide", "content": "guide/index.md" },
{ "title": "Reference", "content": "newref/index.md", "sub": [
{ "title": "Models", "content": "newref/models/index.md", "sub": [
{ "title": "RouteDefinition", "content": [
"newref/models/routedefinition/index.md",
"newref/models/routedefinition/path.md",
"newref/models/routedefinition/middleware.md",
"newref/models/routedefinition/aggregate.md",
"newref/models/routedefinition/corspolicy.md"
]},
{ "title": "AggregationRule", "content": "newref/models/aggregationrule.md" }
]},
{ "title": "Enums", "content": "newref/enums/index.md", "sub": [
{ "title": "RouteMethod", "content": "newref/enums/routemethod.md" },
{ "title": "AggregationTarget", "content": "newref/enums/aggregationtarget.md" }
]},
{ "title": "Decorators", "content": "newref/decorators/index.md", "sub": [
{ "title": "Service", "content": "newref/decorators/service.md" },
{ "title": "Router", "content": "newref/decorators/router.md" },
{ "title": "Interceptor", "content": "newref/decorators/interceptor.md" },
{ "title": "Plugin", "content": "newref/decorators/plugin.md" }
]}
]}
],
"rendererOptions": {
"theme": "steroids",
"multiPage": true,
"versions": [
"1.0.0-alpha"
]
}
}