Skip to content

Commit 66b4258

Browse files
committed
Added login and passwords
1 parent 4180c81 commit 66b4258

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

workshops/introduction_to_event_sourcing/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,10 @@ Follow the instructions in exercises folders.
6666

6767
- EventStoreDB UI: http://localhost:2113/
6868
- Mongo Express UI: http://localhost:8081/
69+
- UI Credentials: login: `admin`, password: `pass`
6970
- PgAdmin: http://localhost:5050/
71+
- UI Credentials: login: `admin@pgadmin.org`, password: `admin`
72+
- Database Credentials: host: `postgres`, login: `postgres`, password: `postgres`
7073

7174
2. You can get build watch by running `npm run build:ts:watch`.
7275
3. To run test for exercises run `npm run test:exercise`. For solutions run `npm run test:solved`, for all `npm run test`.

workshops/introduction_to_event_sourcing/src/04_appending_events_emmett/README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,14 @@ Using a defined structure of events from the [first exercise](../01_events_defin
88

99
## Prerequisities
1010

11-
1. Tests by default are using TestContainers, but if you'd like to troubleshoot it manually, you can disable the TestContainers and use regular docker images by setting the `ES_USE_TEST_CONTAINERS` environment variable to false:
12-
13-
```bash
14-
ES_USE_TEST_CONTAINERS=false
15-
```
16-
17-
2. Then run: `docker compose up` (or for Mac `docker compose -f docker-compose.arm.yml up`) to start EventStoreDB docker image.You should automatically get:
11+
1. Run: `docker compose up` (or for Mac `docker compose -f docker-compose.arm.yml up`) to start EventStoreDB docker image.You should automatically get:
1812

1913
- EventStoreDB UI: http://localhost:2113/
2014
- Mongo Express UI: http://localhost:8081/
15+
- UI Credentials: login: `admin`, password: `pass`
2116
- PgAdmin: http://localhost:5050/
17+
- UI Credentials: login: `admin@pgadmin.org`, password: `admin`
18+
- Database Credentials: host: `postgres`, login: `postgres`, password: `postgres`
2219

2320
2. You can get build watch by running `npm run build:ts:watch`.
2421
3. To run test for exercises run `npm run test:exercise`. For solutions run `npm run test:solved`, for all `npm run test`.

workshops/introduction_to_event_sourcing/src/solved/04_appending_events_emmett/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ Using a defined structure of events from the [first exercise](../01_events_defin
1212

1313
- EventStoreDB UI: http://localhost:2113/
1414
- Mongo Express UI: http://localhost:8081/
15+
- UI Credentials: login: `admin`, password: `pass`
1516
- PgAdmin: http://localhost:5050/
17+
- UI Credentials: login: `admin@pgadmin.org`, password: `admin`
18+
- Database Credentials: host: `postgres`, login: `postgres`, password: `postgres`
1619

1720
2. You can get build watch by running `npm run build:ts:watch`.
1821
3. To run test for exercises run `npm run test:exercise`. For solutions run `npm run test:solved`, for all `npm run test`.

0 commit comments

Comments
 (0)