Browse Source

增加单项目运行bat

pull/862/head
李宏 2 years ago
parent
commit
78c2cad474
  1. 1
      apps/vue/run.bat
  2. 2
      aspnet-core/start-internal-gateway.bat
  3. 4
      starter/01.start-ids.bat
  4. 4
      starter/02.start-ids-admin.bat
  5. 4
      starter/03.start-localization.bat
  6. 4
      starter/04.start-platform.bat
  7. 4
      starter/05.start-messages.bat
  8. 4
      starter/06.start-task-management.bat
  9. 4
      starter/07.start-webhooks-management.bat
  10. 4
      starter/08.start-realtime-message.bat
  11. 4
      starter/09.start-workflow-management.bat
  12. 4
      starter/10.start-admin.bat
  13. 4
      starter/80.start-internal-gateway.bat
  14. 5
      starter/90.start-ui.bat
  15. 9
      starter/99.start-all.cmd

1
apps/vue/run.bat

@ -1 +1,2 @@
title abp-next-admin-vben
npm run dev

2
aspnet-core/start-internal-gateway.bat

@ -2,6 +2,8 @@
cls
chcp 65001
title internal-apigateway
echo. 启动内部网关
cd ..\gateways\internal\LINGYUN.MicroService.Internal.ApiGateway\src\LINGYUN.MicroService.Internal.ApiGateway\

4
starter/01.start-ids.bat

@ -0,0 +1,4 @@
@echo off
cls
cd ..\aspnet-core\
.\start-http-api-host.bat LY.MicroService.IdentityServer identityserver --run

4
starter/02.start-ids-admin.bat

@ -0,0 +1,4 @@
@echo off
cls
cd ..\aspnet-core\
.\start-http-api-host.bat LY.MicroService.IdentityServer.HttpApi.Host identityserver4-admin --run

4
starter/03.start-localization.bat

@ -0,0 +1,4 @@
@echo off
cls
cd ..\aspnet-core\
.\start-http-api-host.bat LY.MicroService.LocalizationManagement.HttpApi.Host localization --run

4
starter/04.start-platform.bat

@ -0,0 +1,4 @@
@echo off
cls
cd ..\aspnet-core\
.\start-http-api-host.bat LY.MicroService.PlatformManagement.HttpApi.Host platform --run

4
starter/05.start-messages.bat

@ -0,0 +1,4 @@
@echo off
cls
cd ..\aspnet-core\
.\start-http-api-host.bat LY.MicroService.RealtimeMessage.HttpApi.Host messages --run

4
starter/06.start-task-management.bat

@ -0,0 +1,4 @@
@echo off
cls
cd ..\aspnet-core\
.\start-http-api-host.bat LY.MicroService.TaskManagement.HttpApi.Host task-management --run

4
starter/07.start-webhooks-management.bat

@ -0,0 +1,4 @@
@echo off
cls
cd ..\aspnet-core\
.\start-http-api-host.bat LY.MicroService.WebhooksManagement.HttpApi.Host webhooks-management--run

4
starter/08.start-realtime-message.bat

@ -0,0 +1,4 @@
@echo off
cls
cd ..\aspnet-core\
.\start-http-api-host.bat LY.MicroService.RealtimeMessage.HttpApi.Host realtime-message --run

4
starter/09.start-workflow-management.bat

@ -0,0 +1,4 @@
@echo off
cls
cd ..\aspnet-core\
.\start-http-api-host.bat LY.MicroService.WorkflowManagement.HttpApi.Host workflow-management --run

4
starter/10.start-admin.bat

@ -0,0 +1,4 @@
@echo off
cls
cd ..\aspnet-core\
.\start-http-api-host.bat LY.MicroService.BackendAdmin.HttpApi.Host admin --run

4
starter/80.start-internal-gateway.bat

@ -0,0 +1,4 @@
@echo off
cls
cd ..\aspnet-core\
.\start-internal-gateway.bat --run

5
starter/90.start-ui.bat

@ -0,0 +1,5 @@
@echo off
cls
cd ../apps/vue/
title abp-next-admin-ui
npm run dev

9
starter/99.start-all.cmd

@ -0,0 +1,9 @@
@echo off
cls
title start-all
set stime=8
for /f "delims=" %%i in ('dir *.bat *.cmd /b /s^|findstr /v /i "99.start-all.cmd"') do (
echo %%i
start %%i
ping -n %stime% 127.1 >nul
)
Loading…
Cancel
Save