-
Notifications
You must be signed in to change notification settings - Fork 22
/
.gitpod.yml
35 lines (29 loc) · 1021 Bytes
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
image:
file: .gitpod.Dockerfile
# List the ports you want to expose and what to do when they are served. See https://www.gitpod.io/docs/43_config_ports/
ports:
- port: 8082
onOpen: open-browser
# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/44_config_start_tasks/
tasks:
- name: maven
# change working directory as per configured in `checkoutLocation`
# which is configured above as `/workspaces/backend`
#before: |
# echo before
#init: |
# echo init
#command: |
init: |
echo Copying settings
cp -f /workspace/owlcms4/.gitpod/settings.xml /home/gitpod/.m2/settings.xml
echo creating shared
mvn -pl shared install
command: |
echo Copying settings
cp -f /workspace/owlcms4/.gitpod/settings.xml /home/gitpod/.m2/settings.xml
echo creating shared
mvn -pl shared install
vscode:
extensions:
- redhat.fabric8-analytics