forked from open-source-labs/Quell
-
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.
Merge pull request open-source-labs#89 from oslabs-beta/staging
Cache Invalidation, LokiJS migration, and Quell-server performance improvements
- Loading branch information
Showing
14 changed files
with
4,579 additions
and
16,627 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,6 @@ | ||
node_modules | ||
.env | ||
demo/dump.rdb | ||
dump.rdb | ||
dump.rdbquell-client/yarn.lock | ||
quell-server/yarn.lock | ||
demo/yarn.lock |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Debug Quell Jest Test", | ||
"type": "pwa-node", | ||
"request": "launch", | ||
"runtimeArgs": [ | ||
"--inspect-brk", | ||
"${workspaceRoot}/demo/node_modules/.bin/jest", | ||
"${fileBasenameNoExtension}", | ||
"--runInBand", | ||
"--detectOpenHandles" | ||
], | ||
"console": "integratedTerminal", | ||
"internalConsoleOptions": "neverOpen" | ||
}, | ||
{ | ||
"name": "Quell Demo Server", | ||
"port": 3000, | ||
"request": "attach", | ||
"processId": "${command:PickProcess}", | ||
"skipFiles": ["<node_internals>/**"], | ||
"type": "pwa-node" | ||
} | ||
] | ||
} |
Oops, something went wrong.