Skip to content

Commit

Permalink
Merge branch 'master' into feature/add_search_and_navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsun28 authored Jul 31, 2024
2 parents 9692bc7 + 2784c8f commit e44a643
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 24 deletions.
7 changes: 0 additions & 7 deletions .gitpod.Dockerfile

This file was deleted.

46 changes: 29 additions & 17 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,33 @@
image:
file: .gitpod.Dockerfile
tasks:
- name: Setup
init: |
cp -r contrib/ide/vscode .vscode
mvn clean install
cd web-app
yarn install
command: |
gp sync-done setup
exit 0

- name: Run backend
before: cd manager
command: |
gp sync-await setup
cd manager
gp sync-await setup-backend
mvn spring-boot:run
- name: Run frontend
before: cd web-app
command: |
gp sync-await setup-frontend
yarn start --public-host "`gp url 4200`"
openMode: split-right

- name: Setup backend
init: |
sdk install java 17.0.11.fx-zulu < /dev/null
sdk default java 17.0.11.fx-zulu < /dev/null
mvn clean install -DskipTests
command: |
gp sync-await setup
gp sync-done setup-backend
exit 0
cd web-app
yarn start
- name: Setup frontend
init: |
cd web-app && yarn install
command: |
gp sync-done setup-frontend
exit 0
openMode: split-right

vscode:
Expand All @@ -39,3 +45,9 @@ ports:
- port: 4200
name: Hertzbeat
onOpen: open-browser

- port: 1157
onOpen: ignore

- port: 1158
onOpen: ignore

0 comments on commit e44a643

Please sign in to comment.