File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version" : " 0.2.0" ,
6
+ "configurations" : [
7
+ {
8
+ "name" : " Note: Results debugger" ,
9
+ "type" : " node" ,
10
+ "request" : " attach" ,
11
+ "port" : 9229 ,
12
+ "address" : " localhost" ,
13
+ "skipFiles" : [
14
+ " <node_internals>/**"
15
+ ],
16
+ "remoteRoot" : " /app" ,
17
+ "localRoot" : " ${workspaceFolder}/result"
18
+ }
19
+ ]
20
+ }
Original file line number Diff line number Diff line change @@ -27,15 +27,15 @@ services:
27
27
result :
28
28
build : ./result
29
29
# use nodemon rather than node for local dev
30
- entrypoint : nodemon server.js
30
+ entrypoint : nodemon --inspect-brk=0.0.0.0 server.js
31
31
depends_on :
32
32
db :
33
33
condition : service_healthy
34
34
volumes :
35
35
- ./result:/app
36
36
ports :
37
37
- " 5001:80"
38
- - " 5858:5858 "
38
+ - " 9229:9229 "
39
39
networks :
40
40
- front-tier
41
41
- back-tier
You can’t perform that action at this time.
0 commit comments