-
-
Notifications
You must be signed in to change notification settings - Fork 528
Expand file tree
/
Copy pathmalta.config.json
More file actions
60 lines (60 loc) · 1.59 KB
/
malta.config.json
File metadata and controls
60 lines (60 loc) · 1.59 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
{
"name": "Lucia",
"description": "An open source resource on implementing authentication with JavaScript",
"domain": "https://lucia-auth.com",
"twitter": "@lucia_auth",
"asset_hashing": true,
"sidebar": [
{
"title": "Sessions",
"pages": [
["Overview", "/sessions/overview"],
["Basic implementation", "/sessions/basic"],
["Inactivity timeout", "/sessions/inactivity-timeout"],
["Stateless tokens", "/sessions/stateless-tokens"],
["Frameworks", "/sessions/frameworks"]
]
},
{
"title": "Tutorials",
"pages": [
["GitHub OAuth", "/tutorials/github-oauth"],
["Google OAuth", "/tutorials/google-oauth"]
]
},
{
"title": "Example projects",
"pages": [
["GitHub OAuth", "/examples/github-oauth"],
["Google OAuth", "/examples/google-oauth"],
["Email and password with 2FA", "/examples/email-password-2fa"],
["Email and password with 2FA and WebAuthn", "/examples/email-password-2fa-webauthn"]
]
},
{
"title": "Rate limiting",
"pages": [["Token bucket", "/rate-limit/token-bucket"]]
},
{
"title": "Lucia v3",
"pages": [["Migrate", "/lucia-v3/migrate"]]
},
{
"title": "Community",
"pages": [
["GitHub", "https://github.com/lucia-auth/lucia"],
["Discord", "https://discord.com/invite/PwrK3kpVR3"],
["Twitter", "https://x.com/lucia_auth"],
["Donate", "https://github.com/sponsors/pilcrowOnPaper"]
]
},
{
"title": "Related projects",
"pages": [
["The Copenhagen Book", "https://thecopenhagenbook.com"],
["Oslo", "https://oslojs.dev"],
["Arctic", "https://arcticjs.dev"]
]
}
]
}