-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.bat
More file actions
26 lines (21 loc) · 1.16 KB
/
launch.bat
File metadata and controls
26 lines (21 loc) · 1.16 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
REM Compile resources
start powershell -Command "mvn -f hackathon-utp-2024-database-resources/pom.xml clean install"
powershell -Command "sleep 6"
REM Launch Config Server
start powershell -Command "mvn -f hackathon-utp-2024-config/pom.xml spring-boot:run -q"
powershell -Command "sleep 8"
REM Launch Eureka Server
start powershell -Command "mvn -f hackathon-utp-2024-eureka/pom.xml spring-boot:run -q"
powershell -Command "sleep 6"
REM Launch API Gateway
start powershell -Command "mvn -f hackathon-utp-2024-gateway/pom.xml spring-boot:run -q"
powershell -Command "sleep 2"
REM Launch other microservices - Java
start powershell -Command "mvn -f hackathon-utp-2024-identity/pom.xml spring-boot:run -q"
start powershell -Command "mvn -f hackathon-utp-2024-teams/pom.xml spring-boot:run -q"
start powershell -Command "mvn -f hackathon-utp-2024-profile/pom.xml spring-boot:run -q"
start powershell -Command "mvn -f hackathon-utp-2024-kanban/pom.xml spring-boot:run -q"
start powershell -Command "mvn -f hackathon-utp-2024-meetings/pom.xml spring-boot:run -q"
REM Launch other microservices - Python
cd hackathon-utp-2024-chatbot
start cmd /k "python -m poetry run python main.py"