This is a repository for creating a Blazor Server application following the principles of Clean Architecture. It has a nice user interface, and an efficient code generator that allows you to quickly build amazing web application with .net Blazor technology.
- Blazor Server mode:https://architecture.blazorserver.com/
- (IP accelerate): http://106.52.105.140:6101/
- Microsoft Visual Studio Community 2022 (64-bit)
- Docker
- .NET 7.0
- Unit Test
- PostgreSQL (Provider Name:
postgresql
) - Microsoft SQL Server (Provider Name:
mssql
) - SQLite (Provider Name:
sqlite
)
- Open the
appsettings.json
file located in the src directory of theBlazor.Server.UI
project. - Change the setting
DBProvider
to the desired provider name (See Supported Databases). - Change the
ConnectionString
to a connection string, which works for your selected database provider.
- Create self-signed development certificates for the project
- cmd:
dotnet dev-certs https -ep $env:USERPROFILE\.aspnet\https\Blazor.Server.UI.pfx -p Password@123
- cmd:
dotnet dev-certs https --trust
- cmd:
- Manage User secrets to save the password
- cmd:
dotnet user-secrets init
- cmd:
dotnet user-secrets -p Blazor.Server.UI.csproj set "Kestrel:Certificates:Development:Password" "Password@123"
- cmd:
2022.mp4
- Open Manage Extensions Search with
CleanArchitecture CodeGenerator For Blaozr App
- Download to Install
- https://github.com/neozhu/CleanArchitectureCodeGenerator
- The code generator can automatically generate the standard code
- install the project template
- run CLI:
dotnet new install ./
- run CLI:
dotnet new list
- run CLI:
![image](https://private-user-images.githubusercontent.com/1549611/250538364-f23022e0-3fd6-475a-96ab-84b0d3328e4c.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkxNTg2NTQsIm5iZiI6MTczOTE1ODM1NCwicGF0aCI6Ii8xNTQ5NjExLzI1MDUzODM2NC1mMjMwMjJlMC0zZmQ2LTQ3NWEtOTZhYi04NGIwZDMzMjhlNGMucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI1MDIxMCUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMTBUMDMzMjM0WiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9ODgxMmQyMDIwMDU4M2FmYTQ2ZDJhYjRkOTJhZDQ3MmIzNzI3ZmQzZmY2ZTI4NmRjZTU3YzE1YjQwZjRjYjJlMCZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.Wz6PsYIgHBFgw70dzq80_V7-q6GwGsy6iFvURuoGmeE)
-
create a solution with the template
- run CLI:
dotnet new ca-blazorserver-sln
ordotnet new ca-blazorserver-sln -n NewProjectName(root namesapces)
- run CLI:
-
build a project template with nuget.exe
- I hate switching between C# and JavaScript at the same time in order to develop a project, which is why I opted for Blazor Server.
-
Avoid repeating work
-
Focus on story implementation
-
Integration Hangfire dashboard
-
Implementation OCR image recognition
-
org chart
Coming up.
MIT License