You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Welcome to Keploy’s documentation! Whether you're new to backend testing or an experienced developer, this guide will help you get started with Keploy quickly and effectively.🗺️
12
+
Welcome to Keploy’s documentation! Whether you're new to backend testing
13
+
or an experienced developer, this guide will help you get started with
Keploy is an open-source backend testing tool that helps developers quickly create and run tests by capturing
20
-
real user traffic. It generates test cases and data mocks to ensure your code is reliable and helps speed up your release cycle..🛠️
21
-
<br/><br/>
22
-
With features like API testing, unit test generation, and schema/PRD-based test automation, Keploy helps teams release faster while maintaining high reliability.
23
-
It’s easy to use, extensible, and integrates seamlessly into CI/CD pipelines, making backend testing efficient and productive.
21
+
Keploy is an open-source backend testing tool that helps developers
22
+
quickly create and run tests by capturing real user traffic. It
23
+
generates test cases and data mocks to ensure your code is reliable and
24
+
helps speed up your release cycle..🛠️
25
+
<br/>
26
+
<br/>
27
+
With features like API testing, unit test generation, and
28
+
schema/PRD-based test automation, Keploy helps teams release faster
29
+
while maintaining high reliability. It’s easy to use, extensible, and
30
+
integrates seamlessly into CI/CD pipelines, making backend testing
<b>⚠️ Important Note:</b> Keploy v2 is currently in Beta, and the best experience is on Linux. Docker support is experimental, and some limitations may apply.
76
+
<b>⚠️ Important Note:</b> Keploy v2 is currently in Beta, and the best
77
+
experience is on Linux. Docker support is experimental, and some
> Note: Keploy is not supported on MacOS natively.
136
-
137
-
### Setting up the Docker Desktop for WSL 2
138
-
139
-
1. Install Docker Desktop for Windows from [here](https://docs.docker.com/desktop/windows/install/).
140
-
141
-
When developing on Windows with Docker Desktop and WSL 2, it's crucial to configure Docker Desktop to allow WSL 2 distributions to access the Docker daemon. This setup enables seamless integration between your Windows environment, WSL 2 Linux distros, and Docker.
142
-
143
-
By default, Docker Desktop may not be configured to work with all WSL 2 distros out of the box. Proper configuration ensures that you can run Docker commands from within your WSL 2 environment, allowing for a more native Linux development experience while leveraging the power of Windows.
144
-
145
-
> This setup is essential for Keploy to function correctly in a WSL 2 environment, as it needs to interact with the Docker daemon to manage containers and networks effectively.
146
-
> For detailed instructions on how to configure `Docker Desktop` for WSL 2, please refer to the [official Docker documentation](https://docs.docker.com/desktop/wsl/).
147
-
148
-
</details>
149
-
150
-
<details>
151
-
<summary>With Arkade</summary>
152
-
153
-
### With Arkade
154
-
155
-
1. Installing Arkade
156
-
157
-
```bash
158
-
# Note: you can also run without `sudo` and move the binary yourself
159
-
curl -sLS https://get.arkade.dev | sudo sh
160
-
161
-
arkade --help
162
-
ark --help # a handy alias
163
-
164
-
# Windows users with Git Bash
165
-
curl -sLS https://get.arkade.dev | sh
166
-
```
167
-
168
-
2. Install Keploy
169
-
170
-
```bash
171
-
arkade get keploy
172
-
```
173
-
174
-
Or you can also download specific version of Keploy using the following command:
0 commit comments