NetCore + ReactJS (edit)

Clean Architecture with .NET Core & React+Redux

Clean Architecture Essentials - DEV Community

Clean Architecture with .NET6, C#10 and React+Redux. Use cases as central organizing structure, completely testable, decoupled from frameworks

ivanpaulovich/clean-architecture-manga: Clean Architecture with .NET6, C#10 and React+Redux. Use cases as central organizing structure, completely testable, decoupled from frameworks (github.com)

Clean Architecture, SOLID, DDD and TDD

notepad "%systemroot%\system32\drivers\etc\hosts"
127.0.0.1 reactfds.com.vn
::1 reactfds.com.vn
--------------------------------------------------
md "C:\inetpub\wwwroot\reactfds"
%systemroot%\system32\inetsrv\APPCMD add apppool /name:reactfds /managedRuntimeVersion:"" /managedPipelineMode:"Integrated"
%systemroot%\system32\inetsrv\APPCMD list sites
%systemroot%\system32\inetsrv\APPCMD add site /name:reactfds /id:2 /physicalPath:C:\inetpub\wwwroot\reactfds /bindings:https/*:443:reactfds.com.vn
--------------------------------------------------
cd "C:\Program Files (x86)\IIS Express"
IisExpressAdminCmd setupsslUrl -url:https://reactfds.com.vn:443 -UseSelfSigned
%systemroot%\system32\inetsrv\APPCMD set app "reactfds/" /applicationPool:"reactfds"
--------------------------------------------------
cd "C:\src\NetCoreReactJs"
dotnet publish NetCoreReactJs.csproj -c Release -o C:\inetpub\wwwroot\reactfds
%systemroot%\system32\inetsrv\APPCMD recycle apppool "reactfds"