forked from jeanphi-baconnais/template-quarkus-beta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitpod.yml
32 lines (26 loc) · 885 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
image:
file: .gitpod/Dockerfile
tasks:
- name: Quarkus
init: |
echo '__ ____ __ _____ ___ __ ____ ______'
echo '--/ __ \/ / / / _ | / _ \/ //_/ / / / __/ '
echo '-/ /_/ / /_/ / __ |/ , _/ ,< / /_/ /\ \ '
echo '--\___\_\____/_/ |_/_/|_/_/|_|\____/___/ '
echo '👋 Welcome to a workspace setup for Quarkus projects.'
echo 'This workspace allows to use Quarkus CLI. More details here https://quarkus.io/guides/cli-tooling'
- name: Quarkus command
command: echo 'Write here Quarkus command, like `quarkus ext list`or `quarkus ext add xxxx`'
openMode: split-right
ports:
- port: 8080
visibility: public
- port: 5005
visibility: public
vscode:
extensions:
- "redhat.java"
- "vscjava.vscode-java-dependency"
- "vscjava.vscode-java-debug"
- "eamodio.gitlens"
- "gitlab.gitlab-workflow"