Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Update .gitpod.yml to support Gitpod's current configuration #34489

Merged
merged 3 commits into from
Dec 29, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 6 additions & 13 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,19 @@
tasks:
- init: |
nvm install $(jq -r .engines.node package.json) &&
curl https://install.meteor.com/ | sh &&
export PATH="$PATH:$HOME/.meteor" &&
curl https://install.meteor.com/?release=$(
curl -so- https://raw.githubusercontent.com/RocketChat/Rocket.Chat/develop/apps/meteor/.meteor/release | cut -d@ -f2
) | sh &&
export PATH=$PATH:/home/gitpod/.meteor &&
yarn &&
export ROOT_URL=$(gp url 3000)
command: yarn build && yarn dev
command: yarn dsv
ports:
- port: 3000
visibility: public
onOpen: open-preview

github:
prebuilds:
master: true
pullRequests: true
pullRequestsFromForks: true
addCheck: true
addComment: true
addBadge: true
ricardogarim marked this conversation as resolved.
Show resolved Hide resolved

vscode:
extensions:
- esbenp.prettier-vscode
- esbenp.prettier-vscode
Loading