You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: adminforth/documentation/docs/tutorial/05-ListOfAdapters.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,15 +15,15 @@ Used to send emails
15
15
### AWS SES Email Adapter
16
16
17
17
```
18
-
npm i adminforth-email-adapter-aws-ses
18
+
npm i @adminforth/email-adapter-aws-ses
19
19
```
20
20
21
21
Enables email delivery via [Amazon Simple Email Service (SES)](https://aws.amazon.com/ses/), suitable for high-volume, programmatic email sending.
22
22
23
23
### Mailgun Email Adapter
24
24
25
25
```
26
-
npm i adminforth-email-adapter-mailgun
26
+
npm i @adminforth/email-adapter-mailgun
27
27
```
28
28
29
29
Allows sending transactional or marketing emails using [Mailgun](https://www.mailgun.com/), a developer-friendly email service.
@@ -40,47 +40,47 @@ Used to authenticate users via OAuth 2.0 providers
40
40
### Google OAuth Adapter
41
41
42
42
```
43
-
npm i adminforth-google-oauth-adapter
43
+
npm i @adminforth/google-oauth-adapter
44
44
```
45
45
46
46
Supports Google sign-in to allow users to authenticate using their Google or Google Workspaces accounts.
47
47
48
48
### GitHub OAuth Adapter
49
49
50
50
```
51
-
npm i adminforth-github-oauth-adapter
51
+
npm i @adminforth/github-oauth-adapter
52
52
```
53
53
54
54
Enables authentication via GitHub accounts, useful for developer tools and open-source apps.
55
55
56
56
### Facebook OAuth Adapter
57
57
58
58
```
59
-
npm i adminforth-facebook-oauth-adapter
59
+
npm i @adminforth/facebook-oauth-adapter
60
60
```
61
61
62
62
Allows users to log in with Facebook credentials. Facebook OAuth is commonly used for social media integrations.
63
63
64
64
### Keycloak OAuth Adapter
65
65
66
66
```
67
-
npm i adminforth-keycloak-oauth-adapter
67
+
npm i @adminforth/keycloak-oauth-adapter
68
68
```
69
69
70
70
Connects AdminForth to an Open-Source [Keycloak](https://www.keycloak.org/) - generally self-hosted - identity provider for enterprise-grade SSO (Single Sign-On).
71
71
72
72
### Microsoft OAuth Adapter
73
73
74
74
```
75
-
npm i adminforth-microsoft-oauth-adapter
75
+
npm i @adminforth/microsoft-oauth-adapter
76
76
```
77
77
78
78
Supports login through Microsoft accounts including Azure AD, Office365, and Outlook.com.
79
79
80
80
### Twitch OAuth Adapter
81
81
82
82
```
83
-
npm i adminforth-twitch-oauth-adapter
83
+
npm i @adminforth/twitch-oauth-adapter
84
84
```
85
85
86
86
Adds support for Twitch authentication, useful for streaming or creator-oriented platforms.
@@ -97,7 +97,7 @@ Is used for image generating AI tools.
97
97
### OpenAI Image Generation Adapter
98
98
99
99
```
100
-
npm i adminforth-image-generation-adapter-openai
100
+
npm i @adminforth/image-generation-adapter-openai
101
101
```
102
102
103
103
Uses OpenAI’s image generation models (like DALL·E and gpt-image-1) to generate images from text prompts.
@@ -116,7 +116,7 @@ Is used for storing files
116
116
### Amazon S3 Storage Adapter
117
117
118
118
```
119
-
npm i adminforth-storage-adapter-amazon-s3
119
+
npm i @adminforth/storage-adapter-amazon-s3
120
120
```
121
121
122
122
Stores uploaded files in [Amazon S3](https://aws.amazon.com/s3/), providing scalable cloud storage.
@@ -126,7 +126,7 @@ Can be easily forked and customized to work with any S3-compatible storage servi
126
126
### Local Storage Adapter
127
127
128
128
```
129
-
npm i adminforth-storage-adapter-local
129
+
npm i @adminforth/storage-adapter-local
130
130
```
131
131
132
132
Stores files locally on the server’s filesystem. Suitable for development or small-scale self-hosted setups.
@@ -145,7 +145,7 @@ Feel free to fork and implement other models including models from Anthropic, Go
145
145
### OpenAI Completion Adapter
146
146
147
147
```
148
-
npm i adminforth-completion-adapter-open-ai-chat-gpt
148
+
npm i @adminforth/completion-adapter-open-ai-chat-gpt
149
149
```
150
150
151
151
Integrates AdminForth with OpenAI’s ChatGPT models to provide AI-powered completion and conversational features.
0 commit comments