Skip to content

Commit

Permalink
chore(gitpod): ignore ports 1080 1025 and only notify port 3000
Browse files Browse the repository at this point in the history
Also stop automatically running `npm run dev`
  • Loading branch information
filipedeschamps committed Aug 14, 2022
1 parent ac11041 commit 65f2f53
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
tasks:
- name: Run Dev Server
init: nvm install && npm install
command: npm run dev
ports:
- port: 3000
onOpen: open-browser
onOpen: notify
visibility: private
- port: 1080
onOpen: ignore
visibility: private
- port: 1025
onOpen: ignore
visibility: private

0 comments on commit 65f2f53

Please sign in to comment.