Skip to content
Open
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
4 changes: 2 additions & 2 deletions versioned_docs/version-4.0.0/quickstart/samples-echo.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ git clone https://github.com/keploy/samples-go.git && cd samples-go/echo-sql
go mod download
```

#### First things first, update the postgres host on line 41 in main.go to postgres from localhost.
#### First things first, update the postgres host on line 47 in main.go to postgres from localhost.

We will be using Docker compose to run the application as well as Postgres

Expand Down Expand Up @@ -172,7 +172,7 @@ Using the docker-compose file we will start our Postgres instance:-
docker-compose up postgres
```

> **Since we are using docker to run the application, we need to update the `postgres` host on line 41 in `main.go`, update the host to `localhost`.**
> **Since we are using docker to run the application, we need to update the `postgres` host on line 47 in `main.go`, update the host to `localhost`.**

Now, we will create the binary of our application:-

Expand Down
Loading