Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.

Rebrand Codebase #201

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ endif

.PHONY: singleNode
singleNode: ## Run tests against a single node.
@EVENTSTORE_INSECURE=true go test -count=1 -v ./esdb -run 'TestStreams|TestPersistentSubscriptions|TestExpectations|TestProjections'
@EVENTSTORE_INSECURE=true go test -count=1 -v ./kurrentdb -run 'TestStreams|TestPersistentSubscriptions|TestExpectations|TestProjections'

.PHONY: secureNode
secureNode: ## Run tests against a secure node.
@$(DOCKER_COMPOSE_CMD) down -v
@$(DOCKER_COMPOSE_CMD) pull
@$(DOCKER_COMPOSE_CMD) up -d
@EVENTSTORE_INSECURE=false go test -v ./esdb -run 'TestStreams|TestPersistentSubscriptions|TestProjections'
@EVENTSTORE_INSECURE=false go test -v ./kurrentdb -run 'TestStreams|TestPersistentSubscriptions|TestProjections'
@$(DOCKER_COMPOSE_CMD) down

.PHONY: clusterNode
Expand All @@ -52,16 +52,16 @@ clusterNode: ## Run tests against a cluster node.
@$(DOCKER_COMPOSE_CMD) -f cluster-docker-compose.yml up -d
@echo "Waiting for services to be fully ready..."
@sleep 5
@EVENTSTORE_INSECURE=false CLUSTER=true go test -count=1 -v ./esdb -run 'TestStreams|TestPersistentSubscriptions|TestProjections|TestClusterRebalance'
@EVENTSTORE_INSECURE=false CLUSTER=true go test -count=1 -v ./kurrentdb -run 'TestStreams|TestPersistentSubscriptions|TestProjections|TestClusterRebalance'
@$(DOCKER_COMPOSE_CMD) -f cluster-docker-compose.yml down --remove-orphans

.PHONY: misc
misc: ## Run tests that don't need a server to run.
go test -v ./esdb -run TestMisc
go test -v ./kurrentdb -run TestMisc

.PHONY: test
test: singleNode secureNode clusterNode misc ## Run all tests.

.PHONY: ci
ci: ## Run tests in Github Actions setting.
go test -v ./esdb -run "$(CI_TARGET)"
go test -v ./kurrentdb -run "$(CI_TARGET)"
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# EventStoreDB Client SDK for Golang [![Actions Status](https://github.com/eventstore/EventStore-Client-Go/workflows/CI/badge.svg?branch=master)](https://github.com/eventstore/EventStore-Client-Go/actions)
# KurrentDB Client SDK for Golang [![Actions Status](https://github.com/eventstore/EventStore-Client-Go/workflows/CI/badge.svg?branch=master)](https://github.com/eventstore/EventStore-Client-Go/actions)

EventStoreDB is the event-native database, where business events are immutably stored and streamed. Designed for event-sourced, event-driven, and microservices architectures.
KurrentDB is the event-native database, where business events are immutably stored and streamed. Designed for event-sourced, event-driven, and microservices architectures.

This repository contains an [EventStoreDB][es] Client SDK written in Go.
This repository contains an [KurrentDB][kurrent] Client SDK written in Go.

## Developing

Integration tests run against a server using Docker, with the [EventStoreDB gRPC Client Test Container][container].
Integration tests run against a server using Docker, with the [KurrentDB gRPC Client Test Container][container].

### Setup dependencies
Testing requires [Docker] and [Docker Compose] to be installed.
Expand Down Expand Up @@ -42,7 +42,7 @@ make test
## Communities

- [Discuss](https://discuss.eventstore.com/)
- [Discord (Event Store)](https://discord.gg/Phn9pmCw3t)
- [Discord (Kurrent)](https://discord.gg/Phn9pmCw3t)

## Security

Expand All @@ -58,5 +58,5 @@ All contributions to the SDK are made via GitHub Pull Requests, and must be lice
[docker]: https://www.docker.com/
[docker compose]: https://www.docker.com/

[es]: https://eventstore.com
[kurrent]: https://kurrent.io
[make]: https://www.gnu.org/software/make/
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ if ($generateProtos) {
}

Write-Host "Compiling project..."
go build -v .\esdb .\samples
go build -v .\kurrentdb .\samples
Write-Host "done."
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@ then
fi

echo "Compiling project..."
go build -v ./esdb ./samples
go build -v ./kurrentdb ./samples
echo "done."
Loading