forked from DIGI-UW/OpenELIS-Global-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitpod.yml
More file actions
25 lines (20 loc) · 793 Bytes
/
.gitpod.yml
File metadata and controls
25 lines (20 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# This configuration file is created to run on Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml)
# and commit this file to your remote git repository to share the goodness with others.
# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart
tasks:
- name: "Install Java 21 ,Build the Dependencies and Run the docker containers"
before: |
export SDKMAN_AUTO_ACCEPT=true
sdk install java 21.0.2-tem
yes | sdk default java 21.0.2-tem
init: |
cd dataexport
mvn clean install
cd ..
mvn clean install -DskipTests
cd frontend
npm install
cd ..
command: |
docker-compose -f dev.docker-compose.yml up -d