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
This repository includes a `.devcontainer` configuration for a reproducible local setup. GitHub Actions uses the same devcontainer configuration for CI.
8
+
9
+
1. Install Docker and a devcontainer-compatible editor. Visual Studio Code with the Dev Containers extension works well.
10
+
2. Open the repository in the dev container and wait for the post-create setup to finish.
11
+
3. Verify the environment:
12
+
13
+
```bash
14
+
./mvnw -B test
15
+
```
16
+
17
+
## Pull Requests
18
+
19
+
1. Fork the repository and create a branch for your change.
20
+
2. Run the relevant checks from the dev container.
21
+
3. Open a pull request with a short summary of the change and any follow-up context.
> Java library for [Content Delivery API](https://www.contentful.com/developers/docs/references/content-delivery-api/) and [Content Preview API](https://www.contentful.com/developers/docs/references/content-preview-api/). It helps in easily accessing the content stored in Contentful using Java applications.
For a reproducible local setup, open this repository in its included dev container. The container installs the project dependencies automatically when it is created.
517
+
518
+
After the container is ready, run:
519
+
520
+
```bash
521
+
./mvnw -B test
522
+
```
523
+
524
+
See [CONTRIBUTING.md](CONTRIBUTING.md) for the full contributor workflow.
0 commit comments