Skip to content

Commit

Permalink
added debug event and scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
me-matt committed Sep 12, 2024
1 parent 0417e7b commit be66d89
Show file tree
Hide file tree
Showing 7 changed files with 2,232 additions and 1,588 deletions.
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug NPM Script",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"start:debug"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"skipFiles": ["<node_internals>/**"]
}
]
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
{
"testing.openTesting": "neverOpen",
"search.exclude": {
"**/node_modules": false
}
}
6 changes: 6 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,9 @@ services:
ports:
- "7000:7000" # s3 server
- "9991:9991" # data store
sqs:
container_name: sqs
image: softwaremill/elasticmq
ports:
- "9324:9324"
- "9325:9325"
Loading

0 comments on commit be66d89

Please sign in to comment.