-
Notifications
You must be signed in to change notification settings - Fork 4
/
.gitpod.yml
37 lines (33 loc) · 1017 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
36
37
image: gitpod/workspace-java-21
# List the start up tasks. Learn more: https://www.gitpod.io/docs/configure/workspaces/tasks
tasks:
- name: Script Task
init: echo 'init script' # runs during prebuild => https://www.gitpod.io/docs/configure/projects/prebuilds
command: echo 'start script'
# List the ports to expose. Learn more: https://www.gitpod.io/docs/configure/workspaces/ports
ports:
- name: Backend
description: Port 8080 for the backend
port: 8080
onOpen: open-browser
- port: 5050
visibility: public
- port: 9091
visibility: public
- port: 8081
visibility: public
- port: 8085
visibility: public
- port: 9000
visibility: public
onOpen: open-browser
- port: 9101
visibility: public
- port: 9411
visibility: public
onOpen: open-browser
# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart
vscode:
extensions:
- Pivotal.vscode-boot-dev-pack
- vscjava.vscode-java-pack