Skip to content

Commit 4053d56

Browse files
authored
Changed all references of kurrent in code back to eventstore (#900)
1 parent 9f33c3b commit 4053d56

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

docs/getting-started/quickstart/README.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ If you have trouble with this quickstart, you can find more help in the ["Kurren
6969
5. Once complete, you will see a welcome message in the terminal:
7070

7171
```
72-
Hello!👋 Welcome to the KurrentDB Getting Started Quickstart Guide.
72+
Hello!👋 Welcome to the EventStoreDB Getting Started Quickstart Guide.
7373
```
7474

7575
::: tip
@@ -89,9 +89,9 @@ For this quickstart, you can safely ignore and close any Codespaces notification
8989
2. You will see the following message printed in the terminal:
9090

9191
```
92-
🚀 KurrentDB Server has started!! 🚀
92+
🚀 EventStoreDB Server has started!! 🚀
9393
94-
URL to the KurrentDB Admin UI 👉: https://XXXXXXXXX.XXX
94+
URL to the EventStoreDB Admin UI 👉: https://XXXXXXXXX.XXX
9595
```
9696

9797
::::: details (Optional) Learn more about how to start KurrentDB in Docker and the `start_db.sh` script
@@ -123,7 +123,7 @@ docker run # Start a new Docker container using th
123123
-d \ # Run the container in detached mode (in the background)
124124
--name esdb-node \ # Assign the container a name ('esdb-node' in this case)
125125
-p 2113:2113 \ # Map port 2113 on the host to port 2113 in the Docker container. Required for the KurrentDB
126-
kurrentplatform/kurrentdb:latest \ # Specify the Docker image to use, in this case, the latest supported version of KurrentDB
126+
eventstore/eventstore:24.10.1 \ # Specify the Docker image to use, in this case, the latest supported version of KurrentDB
127127
--insecure \ # Run KurrentDB in insecure mode, without authentication and SSL/TLS security (usually for development)
128128
--run-projections=All \ # Enable all projections in KurrentDB, including system and user projections
129129
--enable-atom-pub-over-http # Enable the AtomPub API over HTTP. Required for the KurrentDB Admin UI
@@ -144,7 +144,7 @@ To view the source code on Github, click the link below:
144144
@tab Select >
145145

146146
@tab Python
147-
[![](https://img.shields.io/badge/GitHub-EventStoreDB%20From%20Scratch%20Python-blue?logo=github)](https://github.com/kurrent-io/KurrentDB-From-Scratch-Python)
147+
[![](https://img.shields.io/badge/GitHub-EventStoreDB%20From%20Scratch%20Python-blue?logo=github)](https://github.com/kurrent-io/EventStoreDB-From-Scratch-Python)
148148

149149
@tab Java
150150
[![](https://img.shields.io/badge/GitHub-EventStoreDB%20From%20Scratch%20Java-blue?logo=github)](https://github.com/kurrent-io/EventStoreDB-From-Scratch-Java)
@@ -241,7 +241,7 @@ Alternatively, you can locate and open the file from the EXPLORER window on the
241241

242242
@tab Python
243243
```
244-
kurrentdbclient==1.0.19
244+
esdbclient==1.0.19
245245
```
246246

247247
@tab Java
@@ -265,7 +265,7 @@ For the most recent version of the KurrentDB client package, see [Maven Central]
265265
@tab node.js
266266
```json
267267
"dependencies": {
268-
"@kurrent/kurrentdb-client": "^6.1.0"
268+
"@eventstore/db-client": "^6.1.0"
269269
}
270270
```
271271
:::
@@ -282,7 +282,7 @@ To view the source code on GitHub, click the link below:
282282
@tab Select >
283283

284284
@tab Python
285-
[![](https://img.shields.io/badge/GitHub-EventStoreDB%20From%20Scratch%20Python-blue?logo=github)](https://github.com/kurrent-io/KurrentDB-From-Scratch-Python)
285+
[![](https://img.shields.io/badge/GitHub-EventStoreDB%20From%20Scratch%20Python-blue?logo=github)](https://github.com/kurrent-io/EventStoreDB-From-Scratch-Python)
286286

287287
@tab Java
288288
[![](https://img.shields.io/badge/GitHub-EventStoreDB%20From%20Scratch%20Java-blue?logo=github)](https://github.com/kurrent-io/EventStoreDB-From-Scratch-Java)
@@ -390,29 +390,29 @@ Alternatively, you can locate and open the file from the EXPLORER window on the
390390

391391
@tab Python
392392
```python
393-
# Create an instance of KurrentDBClient, connecting to the KurrentDB at localhost without TLS
394-
client = KurrentDBClient(uri="kurrentdb://localhost:2113?tls=false")
393+
# Create an instance of EventStoreDBClient, connecting to the KurrentDB at localhost without TLS
394+
client = EventStoreDBClient(uri="esdb://localhost:2113?tls=false")
395395
```
396396

397397
@tab Java
398398
```java
399399
// configure the settings to connect to KurrentDB locally without TLS
400-
KurrentDBClientSettings settings = KurrentDBConnectionString.parseOrThrow("kurrentdb://localhost:2113?tls=false");
400+
EventStoreDBClientSettings settings = EventStoreDBConnectionString.parseOrThrow("esdb://localhost:2113?tls=false");
401401
// apply the settings and create an instance of the client
402-
KurrentDBClient client = KurrentDBClient.create(settings);
402+
EventStoreDBClient client = EventStoreDBClient.create(settings);
403403
```
404404

405405
@tab .NET
406406
```c#
407407
// Create an instance of EventStoreClientSettings, connecting to the KurrentDB at localhost without TLS
408-
var settings = EventStoreClientSettings.Create("kurrentdb://localhost:2113?tls=false");
408+
var settings = EventStoreClientSettings.Create("esdb://localhost:2113?tls=false");
409409
await using var client = new EventStoreClient(settings);
410410
```
411411

412412
@tab node.js
413413
```js
414-
// Create an instance of KurrentDBClient, connecting to the KurrentDB at localhost without TLS
415-
const client = KurrentDBClient.connectionString("kurrentdb://localhost:2113?tls=false");
414+
// Create an instance of EventStoreDBClient, connecting to the KurrentDB at localhost without TLS
415+
const client = EventStoreDBClient.connectionString("esdb://localhost:2113?tls=false");
416416
```
417417
:::
418418

@@ -520,7 +520,7 @@ To view the source code on GitHub, click the link below:
520520
@tab Select >
521521

522522
@tab Python
523-
[![](https://img.shields.io/badge/GitHub-EventStoreDB%20From%20Scratch%20Python-blue?logo=github)](https://github.com/kurrent-io/KurrentDB-From-Scratch-Python)
523+
[![](https://img.shields.io/badge/GitHub-EventStoreDB%20From%20Scratch%20Python-blue?logo=github)](https://github.com/kurrent-io/EventStoreDB-From-Scratch-Python)
524524

525525
@tab Java
526526
[![](https://img.shields.io/badge/GitHub-EventStoreDB%20From%20Scratch%20Java-blue?logo=github)](https://github.com/kurrent-io/EventStoreDB-From-Scratch-Java)
@@ -637,31 +637,31 @@ Alternatively, you can locate and open the file from the EXPLORER window on the
637637

638638
@tab Python
639639
```python
640-
# Create an instance of KurrentDBClient, connecting to the KurrentDB at localhost without TLS
641-
client = KurrentDBClient(uri="kurrentdb://localhost:2113?tls=false")
640+
# Create an instance of EventStoreDBClient, connecting to the EventStoreDB at localhost without TLS
641+
client = EventStoreDBClient(uri="esdb://localhost:2113?tls=false")
642642
```
643643

644644
@tab Java
645645
```java
646-
// configure the settings to connect to KurrentDB locally without TLS
647-
KurrentDBClientSettings settings = EventStoreDBConnectionString.
648-
parseOrThrow("kurrentdb://localhost:2113?tls=false");
646+
// configure the settings to connect to EventStoreDB locally without TLS
647+
EventStoreDBClientSettings settings = EventStoreDBConnectionString.
648+
parseOrThrow("esdb://localhost:2113?tls=false");
649649

650650
// apply the settings and create an instance of the client
651-
KurrentDBClient client = KurrentDBClient.create(settings);
651+
EventStoreDBClient client = EventStoreDBClient.create(settings);
652652
```
653653

654654
@tab .NET
655655
```c#
656656
// Create an instance of EventStoreClientSettings, connecting to the KurrentDB at localhost without TLS
657-
var settings = EventStoreClientSettings.Create("kurrentdb://localhost:2113?tls=false");
657+
var settings = EventStoreClientSettings.Create("esdb://localhost:2113?tls=false");
658658
await using var client = new EventStoreClient(settings);
659659
```
660660

661661
@tab node.js
662662
```js
663663
// Create an instance of KurrentDBClient, connecting to the KurrentDB at localhost without TLS
664-
const client = KurrentDBClient.connectionString("kurrentdb://localhost:2113?tls=false");
664+
const client = EventStoreDBClient.connectionString("esdb://localhost:2113?tls=false");
665665
```
666666
:::
667667

@@ -783,7 +783,7 @@ To view the source code on Github, click the link below:
783783
@tab Select >
784784
785785
@tab Python
786-
[![](https://img.shields.io/badge/GitHub-EventStoreDB%20From%20Scratch%20Python-blue?logo=github)](https://github.com/kurrent-io/KurrentDB-From-Scratch-Python)
786+
[![](https://img.shields.io/badge/GitHub-EventStoreDB%20From%20Scratch%20Python-blue?logo=github)](https://github.com/kurrent-io/EventStoreDB-From-Scratch-Python)
787787
788788
@tab Java
789789
[![](https://img.shields.io/badge/GitHub-EventStoreDB%20From%20Scratch%20Java-blue?logo=github)](https://github.com/kurrent-io/EventStoreDB-From-Scratch-Java)

0 commit comments

Comments
 (0)