-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitpod.yml
More file actions
23 lines (21 loc) · 726 Bytes
/
.gitpod.yml
File metadata and controls
23 lines (21 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
image:
file: .gitpod.Dockerfile
tasks:
- name: Application Server
init: |
echo 🐧 GitPod Tasks -> Backend -> Init
./gradlew build
echo 🐧 GitPod Tasks -> Backend -> Init done
command: |
echo 🐧 GitPod Tasks -> Backend -> Command
./gradlew run
echo 🐧 GitPod Tasks -> Backend -> Command done
ports:
- port: 8080
#onOpen: open-preview # do not open preview, because there is nothing served on /
vscode:
extensions:
#- mathiasfrohlich.Kotlin@1.7.1 # Basic Kotlin extension
- fwcd.kotlin # Advanced Kotlin extension
# code completion for application.yml (see: https://docs.micronaut.io/latest/guide/index.html#vsCodeSetup)
- Pivotal.vscode-spring-boot