734b2c91f9
1. 将Hua.Cli.Tests、项目共享库、模块项目等所有项目的TargetFramework从net8.0/net9.0升级到net10.0 2. 完善dotnet-tools.json、模板配置文件,添加必要的构建和发布配置 3. 新增微服务、网关、应用程序的启动脚本和基础配置文件 4. 补充产品管理模块的领域、应用、Web层基础代码和多语言资源
37 lines
779 B
PowerShell
37 lines
779 B
PowerShell
# Run all application services in separate terminals
|
|
# First start infrastructure: __Run_Infrastructure.ps1
|
|
# Then run each service:
|
|
|
|
# Terminal 1: AuthServer
|
|
# 01_AuthServer.ps1
|
|
|
|
# Terminal 2: IdentityService
|
|
# 02_IdentityService.ps1
|
|
|
|
# Terminal 3: TenantManagementService
|
|
# 03_TenantManagementService.ps1
|
|
|
|
# Terminal 4: BloggingService
|
|
# 04_BloggingService.ps1
|
|
|
|
# Terminal 5: ProductService
|
|
# 05_ProductService.ps1
|
|
|
|
# Terminal 6: InternalGateway
|
|
# 06_InternalGateway.ps1
|
|
|
|
# Terminal 7: BackendAdminAppGateway
|
|
# 07_BackendAdminAppGateway.ps1
|
|
|
|
# Terminal 8: PublicWebSiteGateway
|
|
# 08_PublicWebSiteGateway.ps1
|
|
|
|
# Terminal 9: BackendAdminApp
|
|
# 09_BackendAdminApp.ps1
|
|
|
|
# Terminal 10: PublicWebSite
|
|
# 10_PublicWebSite.ps1
|
|
|
|
# Terminal 11: ConsoleClientDemo
|
|
# 11_ConsoleClientDemo.ps1
|