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

Commit db170ea

Browse files
authored
Rebrand codebase. (#192)
1 parent ad440e5 commit db170ea

86 files changed

Lines changed: 3659 additions & 5257 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ endif
3535

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

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

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

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

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

6565
.PHONY: ci
6666
ci: ## Run tests in Github Actions setting.
67-
go test -v ./esdb -run "$(CI_TARGET)"
67+
go test -v ./kurrentdb -run "$(CI_TARGET)"

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# 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)
1+
# 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)
22

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

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

77
## Developing
88

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

1111
### Setup dependencies
1212
Testing requires [Docker] and [Docker Compose] to be installed.
@@ -42,7 +42,7 @@ make test
4242
## Communities
4343

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

4747
## Security
4848

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

61-
[es]: https://eventstore.com
61+
[kurrent]: https://kurrent.io
6262
[make]: https://www.gnu.org/software/make/

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ if ($generateProtos) {
6363
}
6464

6565
Write-Host "Compiling project..."
66-
go build -v .\esdb .\samples
66+
go build -v .\kurrentdb .\samples
6767
Write-Host "done."

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,5 @@ then
7171
fi
7272

7373
echo "Compiling project..."
74-
go build -v ./esdb ./samples
74+
go build -v ./kurrentdb ./samples
7575
echo "done."

0 commit comments

Comments
 (0)