Skip to content

Commit

Permalink
Change login web server port to 5000
Browse files Browse the repository at this point in the history
Safari for some reason doesn't like 6000
  • Loading branch information
vgrichina committed Apr 3, 2020
1 parent 29dcc2b commit 19d30fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ github:
prebuilds:
addBadge: true
ports:
- port: 6000
onOpen: open-browser
- port: 5000
onOpen: open-browser
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ exports.login = async function(options) {

// find a callback URL on the local machine
try {
tempUrl = await capture.callback(6000);
tempUrl = await capture.callback(5000);
} catch (error) {
// console.error("Failed to find suitable port.", error.message)
// TODO: Is it? Try triggering error
Expand Down

0 comments on commit 19d30fb

Please sign in to comment.