-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: show user 5 closest queues to join
to avoid issues with geolocation inaccuracy not letting them join closest queue
- Loading branch information
1 parent
4e00c68
commit 4bc1f81
Showing
19 changed files
with
194 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
node_modules/ | ||
*.pem | ||
.env | ||
test/screenshots/ | ||
test/screenshots/ | ||
*.rdb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
"main": "index.js", | ||
"scripts": { | ||
"start": "node ./server.js", | ||
"front-end-dev": "nodemon --inspect ./server.js", | ||
"back-end-dev": "nodemon --inspect --ignore client/ ./server.js", | ||
"test": "jest --testPathPattern queue.test.js", | ||
"test:e2e": "jest --testPathPattern e2e.test.js", | ||
|
@@ -27,14 +28,19 @@ | |
"dotenv": "^9.0.2", | ||
"express": "^4.17.1", | ||
"ioredis": "^4.27.8", | ||
"socket.io": "^3.1.2" | ||
"socket.io": "^3.1.2", | ||
"open-location-code": "git+ssh://[email protected]:google/open-location-code.git" | ||
}, | ||
"devDependencies": { | ||
"@types/ioredis": "^4.27.1", | ||
"@types/jest": "^27.0.1", | ||
"jest": "^27.0.6", | ||
"nodemon": "^2.0.12", | ||
"playwright": "^1.14.1" | ||
}, | ||
"jest": { | ||
"globalTeardown": "./test/e2e/teardown.js" | ||
}, | ||
"browserslist": [ | ||
"defaults", | ||
"not IE 11", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.