-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitpod.yml
More file actions
36 lines (32 loc) · 770 Bytes
/
Copy path.gitpod.yml
File metadata and controls
36 lines (32 loc) · 770 Bytes
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
image: gitpod/workspace-java-17
tasks:
- name: Setup and Start Services
init: |
cp .env.example .env
docker-compose build
command: |
docker-compose up
- name: Monitor Services
command: |
echo "Waiting for services to start..."
gp ports await 8080
echo "Services are ready!"
echo "Auth API is available at: $(gp url 8080)"
ports:
- port: 8080
name: Auth Service
onOpen: notify
visibility: public
- port: 3306
name: MySQL
onOpen: ignore
visibility: private
vscode:
extensions:
- redhat.java
- vscjava.vscode-gradle
- vscjava.vscode-java-debug
- vscjava.vscode-java-dependency
- vscjava.vscode-java-pack
- vscjava.vscode-java-test
- vscjava.vscode-maven