Skip to content

Commit f3408fb

Browse files
docs:update the dco signoff
Signed-off-by: Pratik Mahalle <[email protected]>
1 parent f0e00ac commit f3408fb

File tree

7 files changed

+11
-12
lines changed

7 files changed

+11
-12
lines changed

versioned_docs/version-2.0.0/keploy-explained/debugger-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To bring up the **Run and Debug** view, select the **Run and Debug** icon in the
1818

1919
If running and debugging is not yet configured (no `launch.json` has been created), VS Code shows the Run start view.
2020

21-
Click on **create a launch.json file** 👉 **Go** : Launch Package**
21+
Click on **create a launch.json file** 👉 **Go** : Launch Package\*\*
2222

2323
Navigate to `launch.json` to begin crafting JSON objects.
2424

versioned_docs/version-3.0.0/keploy-explained/debugger-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To bring up the **Run and Debug** view, select the **Run and Debug** icon in the
1818

1919
If running and debugging is not yet configured (no `launch.json` has been created), VS Code shows the Run start view.
2020

21-
Click on **create a launch.json file** 👉 **Go** : Launch Package**
21+
Click on **create a launch.json file** 👉 **Go** : Launch Package\*\*
2222

2323
Navigate to `launch.json` to begin crafting JSON objects.
2424

versioned_docs/version-3.0.0/quickstart/go-fasthttp-postgres.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ keyword:
1818
- API Test generator
1919
- Auto Testcase generation
2020
---
21+
2122
import InstallReminder from '@site/src/components/InstallReminder';
2223
import SectionDivider from '@site/src/components/SectionDivider';
2324

@@ -214,6 +215,7 @@ wsl ~
214215
```
215216

216217
### Point the app to local Postgres
218+
217219
Update the Postgres URL to `localhost:5432` in `main.go` (mentioned at line 21 in the sample).
218220

219221
### Start Postgres
@@ -279,4 +281,4 @@ Congrats on the journey so far! You've seen Keploy's power, flexed your coding m
279281

280282
Happy coding! ✨👩‍💻👨‍💻✨
281283

282-
Hope this helps you out, if you still have any questions, reach out to us .
284+
Hope this helps you out, if you still have any questions, reach out to us .

versioned_docs/version-3.0.0/quickstart/go-gin-redis.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ keyword:
1818
- API Test generator
1919
- Auto Testcase generation
2020
---
21+
2122
import InstallReminder from '@site/src/components/InstallReminder';
2223
import SectionDivider from '@site/src/components/SectionDivider';
2324

versioned_docs/version-3.0.0/quickstart/go-mux-mysql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ keyword:
1919
- API Test generator
2020
- Auto Testcase generation
2121
---
22+
2223
import InstallReminder from '@site/src/components/InstallReminder';
2324
import SectionDivider from '@site/src/components/SectionDivider';
2425

@@ -144,7 +145,6 @@ We'll be running our sample application right on Linux, but just to make things
144145
> To establish a network for your application using Keploy on Docker, follow these steps.
145146
> If you're using a docker-compose network, replace keploy-network with your app's `docker_compose_network_name` below.
146147
147-
148148
### Start the MySQL instance
149149

150150
```zsh

versioned_docs/version-3.0.0/quickstart/go-mux-sql.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ keyword:
1919
- API Test generator
2020
- Auto Testcase generation
2121
---
22+
2223
import InstallReminder from '@site/src/components/InstallReminder';
2324
import SectionDivider from '@site/src/components/SectionDivider';
2425

@@ -178,9 +179,7 @@ curl --request GET --url http://localhost:8010/products
178179
Example response:
179180

180181
```json
181-
[
182-
{ "id": 1, "name": "Bubbles", "price": 123 }
183-
]
182+
[{"id": 1, "name": "Bubbles", "price": 123}]
184183
```
185184

186185
Or just type `http://localhost:8010/products` in your browser. Your choice!
@@ -378,9 +377,7 @@ curl --request GET --url http://localhost:8010/products
378377
Example response:
379378

380379
```json
381-
[
382-
{ "id": 1, "name": "Bubbles", "price": 123 }
383-
]
380+
[{"id": 1, "name": "Bubbles", "price": 123}]
384381
```
385382

386383
Or simply wander over to your browser and visit `http://localhost:8010/products`.

versioned_docs/version-3.0.0/quickstart/samples-go-gin-mongo.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ keyword:
1818
- API Test generator
1919
- Auto Testcase generation
2020
---
21+
2122
import InstallReminder from '@site/src/components/InstallReminder';
2223
import SectionDivider from '@site/src/components/SectionDivider';
2324

@@ -34,8 +35,6 @@ git clone https://github.com/keploy/samples-go.git && cd samples-go/gin-mongo
3435
go mod download
3536
```
3637

37-
38-
3938
We will be using Docker compose to run the application as well as MongoDb on Docker container.
4039

4140
### Lights, Camera, Record! 🎥

0 commit comments

Comments
 (0)