-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
123 lines (116 loc) · 3.51 KB
/
mkdocs.yml
File metadata and controls
123 lines (116 loc) · 3.51 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
site_name: Fehujs docs
site_url: https://fehujs.github.io/docs
site_author: Pascal LLEONART
site_description: >-
Fehujs is a backend framework built with TypeScript for NodeJS. Its main principle is limiting external
dependencies.
repo_url: https://github.com/fehujs
repo_name: fehujs
copyright: Copyright © 2024-present Pascal LLEONART
theme:
name: material
logo: assets/fehu.png
favicon: assets/fehu-without-bg.png
icon:
repo: fontawesome/brands/github
palette:
primary: white
features:
- content.code.annotate
- content.code.copy
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.progress
- navigation.tabs
- navigation.top
- search.suggest
- search.highlight
- search.share
- toc.follow
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/fehujs
- icon: fontawesome/brands/bluesky
link: https://bsky.app/profile/plleonart.bsky.social
plugins:
- search
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
nav:
- Introduction:
- Home: index.md
- Get started: get-started.md
- Templates: templates.md
- Modules:
- Auth:
- Auth: modules/auth/index.md
- modules/auth/models-and-migrations.md
- modules/auth/user-registration.md
- modules/auth/user-login.md
- modules/auth/user-logout.md
- modules/auth/middleware-and-protecting-routes.md
- Build:
- Build: modules/build/index.md
- modules/build/usage.md
- create-fehujs-app:
- create-fehujs-app: modules/create-fehujs-app/index.md
- modules/create-fehujs-app/usage.md
- CSRF shield:
- CSRF shield: modules/csrf-shield/index.md
- modules/csrf-shield/protect-routes.md
- Database:
- Database: modules/database/index.md
- modules/database/migrations.md
- modules/database/models.md
- modules/database/seeders.md
- modules/database/provider-api.md
- Helpers:
- Helpers: modules/helpers/index.md
- modules/helpers/files.md
- modules/helpers/parsing.md
- modules/helpers/id-generation.md
- HTTP server:
- HTTP server: modules/http-server/index.md
- modules/http-server/routing.md
- modules/http-server/http-context.md
- modules/http-server/cookies.md
- modules/http-server/middlewares.md
- modules/http-server/assets.md
- modules/http-server/https.md
- modules/http-server/router.md
- modules/http-server/server.md
- IOC:
- IOC: modules/ioc/index.md
- modules/ioc/dependency-injection.md
- Jeran:
- Jeran: modules/jeran/index.md
- modules/jeran/reference.md
- Sessions:
- Sessions: modules/sessions/index.md
- modules/sessions/session-id.md
- Template parser:
- Template parser: modules/template-parser/index.md
- modules/template-parser/demonstration.md
- modules/template-parser/reference.md
- modules/template-parser/block-reference.md
- modules/template-parser/contribute.md
- TSConfig:
- TSConfig: modules/tsconfig/index.md
- modules/tsconfig/config.md
- Validator:
- Validator: modules/validator/index.md
- modules/validator/usage.md
- modules/validator/custom-rules.md
- Contribute:
- contribute/index.md
- contribute/module-development.md