-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrunAllOnWindows.bat
More file actions
21 lines (16 loc) · 994 Bytes
/
runAllOnWindows.bat
File metadata and controls
21 lines (16 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
:: PATHS
SET MONGO_DB_PATH="C:/data/db-staticcodeanalysis"
:: mongodb
if not exist %MONGO_DB_PATH% mkdir %MONGO_DB_PATH%
start /D "C:/" mongod --dbpath %MONGO_DB_PATH%
:: support
start /D "microservices/support/discovery-server" mvn spring-boot:run -Dspring.profiles.active=local
start /D "microservices/support/edge-server" mvn spring-boot:run -Dspring.profiles.active=local
:: core
start /D "microservices/core/checkstyle-service" mvn spring-boot:run -Dspring.profiles.active=local
start /D "microservices/core/pmd-service" mvn spring-boot:run -Dspring.profiles.active=local
start /D "microservices/core/mongo-service" mvn spring-boot:run -Dspring.profiles.active=local
start /D "microservices/core/moodle-service" mvn spring-boot:run -Dspring.profiles.active=local
:: composite
start /D "microservices/composite/validator-service" mvn spring-boot:run -Dspring.profiles.active=local
start /D "microservices/composite/governance-service" mvn spring-boot:run -Dspring.profiles.active=local