srclient
Golang Client for Schema Registry
File Explorer
Download Latest Version (.zip)- srclient.yml
- Getting_Endpoint_and_APIKeys.png
- Gopher_Dropping_Mic.png
- .gitignore
- docker-compose.yml
- Dockerfile.integration.test
- EXAMPLES_AVRO.md
- EXAMPLES_PROTOBUF.md
- go.mod
- go.sum
- LICENSE
- mockSchemaRegistryClient.go
- mockSchemaRegistryClient_test.go
- README.md
- schemaRegistryClient.go
- schemaRegistryClient_test.go
- schemaRegistryClientIntegration_test.go
# Installation Guide
1. Get the code
git clone https://github.com/riferrei/srclient
Downloads the entire project code from GitHub to your computer.
cd srclient
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker compose up --exit-code-from srclient-integration-test
Builds and starts all defined containers (server, database, etc.) at once, in the background.
docker compose down --rmi local
Runs the command against the services defined in the compose file.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
Pulled directly from this repo's README.
3. Go
MediumPrerequisites
go build ./...
Compiles the Go program into an executable.
go run .
Runs the Go program directly without a separate build step.
If the build finishes without errors, it worked. If you used go run ., check the terminal output.
// repository documentation
Was this content helpful?
(0 ratings)
