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://mudblazor-s.dotnet6.cn/
- (IP accelerate): http://106.52.105.140:6101/
- Microsoft Visual Studio Community 2022 (64-bit)
- Docker
- .NET 6.0
- Unit Test
- SQL Server(Express or localdb) - default
- MySql and mariadb refer to branch: mysql
- 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
- Manage User secrets to save password
- cmd: dotnet user-secrets init
- cmd: dotnet user-secrets -p Blazor.Server.UI.csproj set "Kestrel:Certificates:Development:Password" "Password@123"
- CleanArchitectureCodeGenerator(branch: blazor)
- https://github.com/neozhu/CleanArchitectureCodeGenerator/tree/blazor
- The code generator can automatically generate the standard code
- run CLI: dotnet new --install sayedha.templates
- create solution/project template
- create .template.config folder
- run CLI: dotnet new templatejson
- edit templatejson file
- install the project template
- run CLI: dotnet new --install ./
- run CLI: dotnet new --list
- create a solution with the template
- I hate switching between C# and JavaScript at the same time in order to develop a project
- Avoid repeating work
- Focus on story implementation
- Integration Hangfire dasboard
- Implementation OCR image recognition
Coming up.
MIT License