Skip to content

Commit

Permalink
Use gp ports await instad of gp await-port in .gitpod.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptronicek committed Jul 14, 2022
1 parent df28c16 commit a7c288a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,20 @@ tasks:
if [[ $NPM_TOKEN ]]; then echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc; fi
# Start Elasticsearch as background process
$ES_HOME/bin/elasticsearch -d -p $ES_HOME/pid -Ediscovery.type=single-node -Expack.ml.enabled=false
gp await-port 9200
gp ports await 9200
# Start the server application
cd server
./scripts/generate-properties.sh
./gradlew runServer
- name: WebUI
command: |
gp await-port 8080
gp ports await 8080
# Start Express for serving frontend resources
cd webui
yarn start:default
- name: Publisher
command: |
gp await-port 8080
gp ports await 8080
# Use the CLI to publish some test extensions to the running server
export OVSX_REGISTRY_URL=http://localhost:8080
export OVSX_PAT=super_token
Expand Down

0 comments on commit a7c288a

Please sign in to comment.