Skip to content

Commit

Permalink
fix: directory tree to avoid confusion (#789)
Browse files Browse the repository at this point in the history
  • Loading branch information
wgaldino authored Jul 14, 2024
1 parent a6c085d commit 3a55ac8
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions scaling-acceptance-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ We need to create a Dockerfile for our program. Inside our `httpserver` folder,
```dockerfile
# Make sure to specify the same Go version as the one in the go.mod file.
# For example, golang:1.22.1-alpine.
FROM golang:1.18-alpine
FROM golang:1.18-alpine

WORKDIR /app

Expand Down Expand Up @@ -804,21 +804,21 @@ Our project tree should now look like this:
```
quii@Chriss-MacBook-Pro go-specs-greet % tree
.
├── Dockerfile
├── Makefile
├── README.md
├── adapters
   └── httpserver
   ├── driver.go
   └── handler.go
└── httpserver
├── driver.go
└── handler.go
├── cmd
│   └── httpserver
│   ├── greeter_server_test.go
│   └── main.go
│ └── httpserver
| ├── Dockerfile
│ ├── greeter_server_test.go
│ └── main.go
├── domain
   └── interactions
   ├── greet.go
   └── greet_test.go
└── interactions
├── greet.go
└── greet_test.go
├── go.mod
├── go.sum
└── specifications
Expand Down

0 comments on commit 3a55ac8

Please sign in to comment.