We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea9fdc3 commit fd89467Copy full SHA for fd89467
.devcontainer/devcontainer.json
@@ -21,5 +21,13 @@
21
]
22
}
23
},
24
- "remoteUser": "vscode"
+ "remoteUser": "vscode",
25
+ "forwardPorts": [8080],
26
+ "portsAttributes": {
27
+ "8080": {
28
+ "label": "Port 8080",
29
+ "onAutoForward": "openPreview",
30
+ "elevateIfNeeded": true
31
+ }
32
33
.gitpod/automations.yaml
@@ -0,0 +1,17 @@
1
+tasks:
2
+ run:
3
+ command: |
4
+ ./mvnw spring-boot:run
5
+ dependsOn:
6
+ - init
7
+ name: "Run PetClinic App"
8
+ triggeredBy:
9
+ - postDevcontainerStart
10
+ - manual
11
+ init:
12
13
+ ./mvnw clean install -U -DskipTests
14
+ name: "Build"
15
16
17
+
0 commit comments