File tree Expand file tree Collapse file tree 3 files changed +41
-1
lines changed
Expand file tree Collapse file tree 3 files changed +41
-1
lines changed Original file line number Diff line number Diff line change 22title : Blazor Applications
33description : A walkthrough showing how to set up and configure a BFF (Backend For Frontend) application using Blazor
44sidebar :
5- order : 150
5+ order : 100
66 label : Blazor
77redirect_from :
88 - /bff/v2/samples/bff/
Original file line number Diff line number Diff line change 1+ ---
2+ title : Getting Started - Templates
3+ description : A guide on how to install the BFF project templates.
4+ sidebar :
5+ order : 200
6+ label : " Templates"
7+ ---
8+
9+ Project templates for Duende BFF are shipped as part of the Duende .NET project templates.
10+ Refer the [ templates documentation] ( /identityserver/overview/packaging.mdx#templates ) for more information on how to install the templates.
11+
12+ ## Available templates
13+
14+ ### BFF Remote API
15+
16+ ``` shell
17+ dotnet new duende-bff-remoteapi
18+ ```
19+
20+ Creates a basic JavaScript-based BFF host that configures and invokes a [ remote API via the BFF proxy] ( /bff/fundamentals/apis/remote.mdx ) .
21+
22+ ### BFF Local API
23+
24+ ``` shell
25+ dotnet new duende-bff-localapi
26+ ```
27+
28+ Creates a basic JavaScript-based BFF host that invokes a [ local API] ( /bff/fundamentals/apis/local.mdx ) co-hosted with the BFF.
29+
30+ ### BFF Blazor
31+
32+ ``` shell
33+ dotnet new duende-bff-blazor
34+ ```
35+
36+ Creates a Blazor application that [ uses the interactive auto render mode] ( /bff/fundamentals/blazor/index.md ) ,
37+ and secures the application across all render modes consistently using Duende.BFF.Blazor.
Original file line number Diff line number Diff line change @@ -263,3 +263,6 @@ library.
263263
264264[ Please read our ASP.NET Identity documentation] ( /identityserver/aspnet-identity/index.md ) , to learn more about this integration.
265265
266+ ### BFF Templates
267+
268+ For Duende BFF template description, refer the [ Duende BFF project templates] ( /bff/getting-started/templates.mdx ) .
You can’t perform that action at this time.
0 commit comments