-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanjaro-setup.sh
47 lines (28 loc) · 2.16 KB
/
manjaro-setup.sh
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
#!/bin/bash
# to run this use the command bash setup.sh
echo "Setting up project"
git clone https://github.com/C-Inherited/copernicus-microservices-configuration.git copernicus/microservices-directions
git clone https://github.com/C-Inherited/copernicus-eureka-service.git copernicus/eureka-service
git clone https://github.com/C-Inherited/copernicus-config-service.git copernicus/config-service
git clone https://github.com/C-Inherited/copernicus-account-service.git copernicus/account-service
git clone https://github.com/C-Inherited/copernicus-result-service.git copernicus/result-service
git clone https://github.com/C-Inherited/copernicus-validation-service.git copernicus/validation-service
git clone https://github.com/C-Inherited/copernicus-contact-service.git copernicus/contact-service
git clone https://github.com/C-Inherited/copernicus-stats-service.git copernicus/stats-service
git clone https://github.com/C-Inherited/copernicus-opportunities-service.git copernicus/opportunities-service
git clone https://github.com/C-Inherited/copernicus-salesrep-service.git copernicus/salesrep-service
git clone https://github.com/C-Inherited/copernicus-leads-service.git copernicus/leads-service
git clone https://github.com/C-Inherited/copernicus-gateway-service.git copernicus/gateway-service
git clone https://github.com/C-Inherited/Copernicus-CRM.git copernicus/manual
konsole -e mvn -f copernicus/eureka-service/pom.xml spring-boot:run &
konsole -e mvn -f copernicus/config-service/pom.xml spring-boot:run &
konsole -e mvn -f copernicus/account-service/pom.xml spring-boot:run &
konsole -e mvn -f copernicus/result-service/pom.xml spring-boot:run &
konsole -e mvn -f copernicus/validation-service/pom.xml spring-boot:run &
konsole -e mvn -f copernicus/contact-service/pom.xml spring-boot:run &
konsole -e mvn -f copernicus/stats-service/pom.xml spring-boot:run &
konsole -e mvn -f copernicus/opportunities-service/pom.xml spring-boot:run &
konsole -e mvn -f copernicus/salesrep-service/pom.xml spring-boot:run &
konsole -e mvn -f copernicus/leads-service/pom.xml spring-boot:run &
konsole -e mvn -f copernicus/gateway-service/pom.xml spring-boot:run &
echo "Copernicus setted up"