You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 18, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: Makefile
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -35,14 +35,14 @@ endif
35
35
36
36
.PHONY: singleNode
37
37
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'
39
39
40
40
.PHONY: secureNode
41
41
secureNode: ## Run tests against a secure node.
42
42
@$(DOCKER_COMPOSE_CMD) down -v
43
43
@$(DOCKER_COMPOSE_CMD) pull
44
44
@$(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'
46
46
@$(DOCKER_COMPOSE_CMD) down
47
47
48
48
.PHONY: clusterNode
@@ -52,16 +52,16 @@ clusterNode: ## Run tests against a cluster node.
52
52
@$(DOCKER_COMPOSE_CMD) -f cluster-docker-compose.yml up -d
53
53
@echo "Waiting for services to be fully ready..."
54
54
@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'
56
56
@$(DOCKER_COMPOSE_CMD) -f cluster-docker-compose.yml down --remove-orphans
57
57
58
58
.PHONY: misc
59
59
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
61
61
62
62
.PHONY: test
63
63
test: singleNode secureNode clusterNode misc ## Run all tests.
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
-
# EventStoreDB Client SDK for Golang [](https://github.com/eventstore/EventStore-Client-Go/actions)
1
+
# KurrentDB Client SDK for Golang [](https://github.com/eventstore/EventStore-Client-Go/actions)
2
2
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.
4
4
5
-
This repository contains an [EventStoreDB][es] Client SDK written in Go.
5
+
This repository contains an [KurrentDB][kurrent] Client SDK written in Go.
6
6
7
7
## Developing
8
8
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].
10
10
11
11
### Setup dependencies
12
12
Testing requires [Docker] and [Docker Compose] to be installed.
0 commit comments