Skip to content

Commit f3845b7

Browse files
committed
Tweak the introduction to fit with the other labs
1 parent 43383ed commit f3845b7

1 file changed

Lines changed: 25 additions & 14 deletions

File tree

labspace/01-introduction.md

Lines changed: 25 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,31 @@
1-
# Step 1: Getting Started
1+
# Introduction
22

3-
## Clone the following project from GitHub:
4-
```bash
5-
git clone https://github.com/testcontainers/workshop.git
6-
```
3+
👋 Welcome to this Labspace focused on helping you learn how to use Testcontainers in a Spring-based application.
74

8-
## Build the project to download the dependencies
5+
By the end, you will have learned the following:
96

10-
Switch to the workshop folder:
7+
- Write end-to-end API tests using real services instead of mocks
8+
- How to autowire Spring config to use containerized databases
9+
- How to use GenericContainer to provide additional services and wire them with `@DynamicPropertySource`
1110

12-
```bash
13-
cd workshop
14-
```
11+
## Setup
1512

16-
and build the project with Maven:
13+
1. Clone the workshop repository into the lab environment:
1714

18-
```bash
19-
./mvnw verify
20-
```
15+
```bash
16+
git clone https://github.com/testcontainers/workshop.git
17+
```
18+
19+
2. Build the project to download the dependencies
20+
21+
Switch to the workshop folder:
22+
23+
```bash
24+
cd workshop
25+
```
26+
27+
3. Build the project with Maven:
28+
29+
```bash
30+
./mvnw verify
31+
```

0 commit comments

Comments
 (0)