forked from dellxdesq/RegistersProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_all.bat
More file actions
48 lines (38 loc) · 1.31 KB
/
run_all.bat
File metadata and controls
48 lines (38 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
@echo off
setlocal
:: Путь к текущей папке (корень проекта)
set ROOT=%~dp0
:: Запуск MinIO (docker-compose) из StorageService
echo Запуск docker-compose (MinIO)...
cd /d "%ROOT%StorageService"
start cmd /k "docker-compose up"
:: Запуск AuthService
echo Запуск AuthService...
cd /d "%ROOT%AuthService"
start cmd /k "dotnet run --launch-profile https"
:: Запуск ExternalApiService
echo Запуск ExternalApiService...
cd /d "%ROOT%ExternalApiService"
start cmd /k "dotnet run --launch-profile https"
:: Запуск FileAnalyzerService
echo Запуск FileAnalyzerService...
cd /d "%ROOT%FileAnalyzerService"
start cmd /k "dotnet run --launch-profile https"
:: Запуск RegistryService
echo Запуск RegistryService...
cd /d "%ROOT%RegistryService"
start cmd /k "dotnet run --launch-profile https"
:: Запуск StorageService
echo Запуск StorageService...
cd /d "%ROOT%StorageService"
start cmd /k "dotnet run --launch-profile https"
:: Запуск ApiGateway
echo Запуск ApiGateway...
cd /d "%ROOT%ApiGateway"
start cmd /k "dotnet run --launch-profile https"
:: Запуск фронтенда
echo Запуск Frontend (npm start)...
cd /d "%ROOT%Frontend"
start cmd /k "npm start"
echo Все сервисы запущены!
endlocal