Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix cd destination and language of code blocks #296

Merged
merged 2 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion versioned_docs/version-1.0.0/java/quickstart/spring-sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Sync dependencies or to _build.gradle_:
## Setup Sample Employee-Manager App

```bash
git clone https://github.com/keploy/samples-java && cd samples-java
git clone https://github.com/keploy/samples-java && cd samples-java/employee-manager
```

### Start PostgreSQL DB for Employee-Manager App
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-2.0.0/quickstart/samples-java.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ curl -O https://raw.githubusercontent.com/keploy/keploy/main/keploy.sh && source
Clone the repository and install the dependencies

```bash
git clone https://github.com/keploy/samples-java && cd employee-manager
git clone https://github.com/keploy/samples-java && cd samples-java/employee-manager
mvn clean install -Dmaven.test.skip=true
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ To demonstrate this, let's consider the [gin-mongo](https://github.com/keploy/sa

1. Clone the repository and move to gin-mongo folder

```go
```bash
git clone https://github.com/keploy/samples-go && cd samples-go/gin-mongo
```

2. Create a binary for the application.

```go
```bash
go build
```

3. Run keploy in record mode and provide the path to the binary.

```go
```bash
sudo -E keploy record -c "./test-app-url-shortener"
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ This is the client SDK for the [Keploy](https://github.com/keploy/keploy) testin

Add the Keploy Go SDK to your project:

```go
```bash
go get -u github.com/keploy/go-sdk/v2
```

Expand Down
Loading