Skip to content

Commit 786ee44

Browse files
authored
Merge pull request #86 from ghuntley/gh/gitpod
Fully-automate development setup with Gitpod
2 parents 17d86d9 + 7e79f5a commit 786ee44

File tree

4 files changed

+24
-1
lines changed

4 files changed

+24
-1
lines changed

.gitpod.Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FROM maven:3-openjdk-11

.gitpod.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
image:
2+
file: .gitpod.Dockerfile
3+
4+
# List the start up tasks. You can start them in parallel in multiple terminals.
5+
# https://www.gitpod.io/docs/config-start-tasks/
6+
tasks:
7+
- init: >
8+
mvn -B -f pom.xml clean install verify
9+
# Enable prebuilds of your project to enable faster workspace start times.
10+
# https://www.gitpod.io/docs/prebuilds/#configure-the-github-app
11+
github:
12+
prebuilds:
13+
master: true
14+
branches: true
15+
pullRequests: true
16+
pullRequestsFromForks: true
17+
addCheck: true

CONTRIBUTING.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Hacking on Serverless Workflow Java SDK in Gitpod
2+
3+
If you have a web browser, you can get a fully pre-configured development environment in one click:
4+
5+
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/serverlessworkflow/sdk-java)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
![Verify JAVA SDK](https://github.com/serverlessworkflow/sdk-java/workflows/Verify%20JAVA%20SDK/badge.svg)
2-
![Deploy JAVA SDK](https://github.com/serverlessworkflow/sdk-java/workflows/Deploy%20JAVA%20SDK/badge.svg)
2+
![Deploy JAVA SDK](https://github.com/serverlessworkflow/sdk-java/workflows/Deploy%20JAVA%20SDK/badge.svg) [![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/serverlessworkflow/sdk-java)
33

44
# Serverless Workflow Specification - Java SDK
55

0 commit comments

Comments
 (0)