chore(.gitpod.yml): use new api (#56302)

prod-current
Shaun Hamilton 2024-09-26 17:24:44 +02:00 committed by GitHub
parent fb6087fcd1
commit a5db58f769
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 3 deletions

View File

@ -41,8 +41,8 @@ tasks:
- name: db
# starting mongod in background, so it doesn't block prebuilds
before: >
mkdir -p /workspace/data &&
(mongod --dbpath /workspace/data &)
cd api/tools &&
docker compose up -d
- name: server
before: export COOKIE_DOMAIN=gitpod.io && export HOME_LOCATION=$(gp url 8000) && export API_LOCATION=$(gp url 3000)
@ -58,7 +58,8 @@ tasks:
pnpm run seed &&
mongosh --eval "db.fsyncLock(); db.fsyncUnlock()" &&
gp ports await 27017 &&
pnpm run develop:server
cd api &&
pnpm run develop
- name: client
before: export HOME_LOCATION=$(gp url 8000) && export API_LOCATION=$(gp url 3000)