Skip to content

Commit dc8b593

Browse files
authored
Merge pull request #13 from jsr-probitas/feature/rename-to-echo-servers
Rename repository to echo-servers
2 parents 0434329 + 130ffe8 commit dc8b593

37 files changed

+91
-90
lines changed

CLAUDE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Probitas Test Servers
1+
# Echo Servers
22

3-
Docker images for testing HTTP, gRPC, and GraphQL clients.
3+
Echo servers for testing HTTP, gRPC, and GraphQL clients.
44

55
## Project Overview
66

@@ -12,7 +12,7 @@ Docker images for testing HTTP, gRPC, and GraphQL clients.
1212
## Project Structure
1313

1414
```
15-
dockerfiles/
15+
echo-servers/
1616
├── flake.nix # Nix development environment
1717
├── justfile # Root justfile (imports submodules)
1818
├── compose.yaml # Local orchestration
@@ -156,7 +156,7 @@ RUN go generate ./... # If needed
156156
RUN CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH go build -o app .
157157
158158
FROM scratch
159-
LABEL org.opencontainers.image.source="https://github.com/jsr-probitas/dockerfiles"
159+
LABEL org.opencontainers.image.source="https://github.com/jsr-probitas/echo-servers"
160160
LABEL org.opencontainers.image.description="Description of the server"
161161
LABEL org.opencontainers.image.licenses="MIT"
162162
COPY --from=builder /app/app /app

README.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
1-
# Probitas Test Servers
1+
# Echo Servers
22

3-
[![Build echo-http](https://github.com/jsr-probitas/dockerfiles/actions/workflows/build.echo-http.yml/badge.svg)](https://github.com/jsr-probitas/dockerfiles/actions/workflows/build.echo-http.yml)
4-
[![Build echo-grpc](https://github.com/jsr-probitas/dockerfiles/actions/workflows/build.echo-grpc.yml/badge.svg)](https://github.com/jsr-probitas/dockerfiles/actions/workflows/build.echo-grpc.yml)
5-
[![Build echo-graphql](https://github.com/jsr-probitas/dockerfiles/actions/workflows/build.echo-graphql.yml/badge.svg)](https://github.com/jsr-probitas/dockerfiles/actions/workflows/build.echo-graphql.yml)
3+
[![Build echo-http](https://github.com/jsr-probitas/echo-servers/actions/workflows/build.echo-http.yml/badge.svg)](https://github.com/jsr-probitas/echo-servers/actions/workflows/build.echo-http.yml)
4+
[![Build echo-grpc](https://github.com/jsr-probitas/echo-servers/actions/workflows/build.echo-grpc.yml/badge.svg)](https://github.com/jsr-probitas/echo-servers/actions/workflows/build.echo-grpc.yml)
5+
[![Build echo-graphql](https://github.com/jsr-probitas/echo-servers/actions/workflows/build.echo-graphql.yml/badge.svg)](https://github.com/jsr-probitas/echo-servers/actions/workflows/build.echo-graphql.yml)
66

7-
Docker images for testing [Probitas](https://github.com/jsr-probitas/probitas)
8-
clients.
7+
Echo servers for testing HTTP, gRPC, and GraphQL clients. Built for testing
8+
[Probitas](https://github.com/jsr-probitas/probitas) and other client
9+
implementations.
910

1011
## Images
1112

12-
| Image | Protocol | Default Port | Status |
13-
| ----------------------------------- | -------- | ------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
14-
| `ghcr.io/jsr-probitas/echo-http` | HTTP | 80 | [![Docker](https://github.com/jsr-probitas/dockerfiles/actions/workflows/docker.echo-http.yml/badge.svg)](https://github.com/jsr-probitas/dockerfiles/actions/workflows/docker.echo-http.yml) |
15-
| `ghcr.io/jsr-probitas/echo-grpc` | gRPC | 50051 | [![Docker](https://github.com/jsr-probitas/dockerfiles/actions/workflows/docker.echo-grpc.yml/badge.svg)](https://github.com/jsr-probitas/dockerfiles/actions/workflows/docker.echo-grpc.yml) |
16-
| `ghcr.io/jsr-probitas/echo-graphql` | GraphQL | 8080 | [![Docker](https://github.com/jsr-probitas/dockerfiles/actions/workflows/docker.echo-graphql.yml/badge.svg)](https://github.com/jsr-probitas/dockerfiles/actions/workflows/docker.echo-graphql.yml) |
13+
| Image | Protocol | Default Port | Status |
14+
| ----------------------------------- | -------- | ------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
15+
| `ghcr.io/jsr-probitas/echo-http` | HTTP | 80 | [![Docker](https://github.com/jsr-probitas/echo-servers/actions/workflows/docker.echo-http.yml/badge.svg)](https://github.com/jsr-probitas/echo-servers/actions/workflows/docker.echo-http.yml) |
16+
| `ghcr.io/jsr-probitas/echo-grpc` | gRPC | 50051 | [![Docker](https://github.com/jsr-probitas/echo-servers/actions/workflows/docker.echo-grpc.yml/badge.svg)](https://github.com/jsr-probitas/echo-servers/actions/workflows/docker.echo-grpc.yml) |
17+
| `ghcr.io/jsr-probitas/echo-graphql` | GraphQL | 8080 | [![Docker](https://github.com/jsr-probitas/echo-servers/actions/workflows/docker.echo-graphql.yml/badge.svg)](https://github.com/jsr-probitas/echo-servers/actions/workflows/docker.echo-graphql.yml) |
1718

1819
## Quick Start
1920

echo-graphql/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN go run github.com/99designs/gqlgen generate
2222
RUN CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH go build -o echo-graphql .
2323

2424
FROM scratch
25-
LABEL org.opencontainers.image.source="https://github.com/jsr-probitas/dockerfiles"
25+
LABEL org.opencontainers.image.source="https://github.com/jsr-probitas/echo-servers"
2626
LABEL org.opencontainers.image.description="GraphQL echo server for testing GraphQL clients"
2727
LABEL org.opencontainers.image.licenses="MIT"
2828
COPY --from=builder /app/echo-graphql /echo-graphql

echo-graphql/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# echo-graphql
22

3-
[![Build](https://github.com/jsr-probitas/dockerfiles/actions/workflows/build.echo-graphql.yml/badge.svg)](https://github.com/jsr-probitas/dockerfiles/actions/workflows/build.echo-graphql.yml)
4-
[![Docker](https://github.com/jsr-probitas/dockerfiles/actions/workflows/docker.echo-graphql.yml/badge.svg)](https://github.com/jsr-probitas/dockerfiles/actions/workflows/docker.echo-graphql.yml)
3+
[![Build](https://github.com/jsr-probitas/echo-servers/actions/workflows/build.echo-graphql.yml/badge.svg)](https://github.com/jsr-probitas/echo-servers/actions/workflows/build.echo-graphql.yml)
4+
[![Docker](https://github.com/jsr-probitas/echo-servers/actions/workflows/docker.echo-graphql.yml/badge.svg)](https://github.com/jsr-probitas/echo-servers/actions/workflows/docker.echo-graphql.yml)
55

66
GraphQL echo server for testing GraphQL clients.
77

echo-graphql/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/jsr-probitas/dockerfiles/echo-graphql
1+
module github.com/jsr-probitas/echo-servers/echo-graphql
22

33
go 1.24.0
44

echo-graphql/gqlgen.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ resolver:
2020
omit_template_comment: true
2121

2222
autobind:
23-
- github.com/jsr-probitas/dockerfiles/echo-graphql/graph/model
23+
- github.com/jsr-probitas/echo-servers/echo-graphql/graph/model
2424

2525
models:
2626
ID:
@@ -30,14 +30,14 @@ models:
3030
model:
3131
- github.com/99designs/gqlgen/graphql.Int
3232
Message:
33-
model: github.com/jsr-probitas/dockerfiles/echo-graphql/graph/model.Message
33+
model: github.com/jsr-probitas/echo-servers/echo-graphql/graph/model.Message
3434
EchoResult:
35-
model: github.com/jsr-probitas/dockerfiles/echo-graphql/graph/model.EchoResult
35+
model: github.com/jsr-probitas/echo-servers/echo-graphql/graph/model.EchoResult
3636
Headers:
37-
model: github.com/jsr-probitas/dockerfiles/echo-graphql/graph/model.Headers
37+
model: github.com/jsr-probitas/echo-servers/echo-graphql/graph/model.Headers
3838
HeaderEntry:
39-
model: github.com/jsr-probitas/dockerfiles/echo-graphql/graph/model.HeaderEntry
39+
model: github.com/jsr-probitas/echo-servers/echo-graphql/graph/model.HeaderEntry
4040
NestedEcho:
41-
model: github.com/jsr-probitas/dockerfiles/echo-graphql/graph/model.NestedEcho
41+
model: github.com/jsr-probitas/echo-servers/echo-graphql/graph/model.NestedEcho
4242
EchoListItem:
43-
model: github.com/jsr-probitas/dockerfiles/echo-graphql/graph/model.EchoListItem
43+
model: github.com/jsr-probitas/echo-servers/echo-graphql/graph/model.EchoListItem

0 commit comments

Comments
 (0)