@@ -8,12 +8,22 @@ A sample Employee-Manager app to test Keploy integration capabilities using [Spr
88
99## Installation
1010
11- ### Start keploy server
11+ ### Start keploy server (macOS)
1212
1313``` shell
14- git clone https://github.com/keploy/keploy.git && cd keploy
15- docker-compose up
14+ curl --silent --location " https://github.com/keploy/keploy/releases/latest/download/keploy_darwin_all.tar.gz" | tar xz -C /tmp
15+
16+ sudo mv /tmp/keploy /usr/local/bin && keploy
1617```
18+ ### Start keploy server (Linux)
19+
20+ ``` shell
21+ curl --silent --location " https://github.com/keploy/keploy/releases/latest/download/keploy_linux_amd64.tar.gz" | tar xz -C /tmp
22+
23+
24+ sudo mv /tmp/keploy /usr/local/bin && keploy
25+ ```
26+
1727
1828### Setup Employee-Manager App
1929
@@ -118,7 +128,7 @@ To automatically download and run the captured test-cases. Let's run the test-fi
118128
1191292 . To get test coverage, in addition to above follow below instructions.
120130
121- 3. Add maven-surefire-plugin to your *pom.xml*.
131+ 3 . Add maven-surefire-plugin to your * pom.xml* .
122132
123133 ```xml
124134 <plugin>
@@ -136,7 +146,8 @@ To automatically download and run the captured test-cases. Let's run the test-fi
136146 </configuration>
137147 </plugin>
138148 ```
139- - 4. Add Jacoco plugin to your *pom.xml*.
149+ 4 . Add Jacoco plugin to your * pom.xml* .
150+
140151 ```xml
141152 <plugin>
142153 <groupId>org.jacoco</groupId>
@@ -173,7 +184,8 @@ To automatically download and run the captured test-cases. Let's run the test-fi
173184 </executions>
174185 </plugin>
175186 ```
176- 5. Run your tests using command : `mvn test`.
187+
188+ 5 . Run your tests using command : ` mvn test ` .
177189
178190It will create .html files as test-reports which can be found in your target folder !!
179191
0 commit comments