File tree Expand file tree Collapse file tree 2 files changed +20
-2
lines changed Expand file tree Collapse file tree 2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 11docker_build ("snyk/kubernetes-monitor" , "." ,
22 live_update = [
33 fall_back_on (["package.json" , "package-lock.json" ]),
4- sync ('.' , '/src' ),
5- ]
4+ sync ('.' , '/root' ),
5+ ],
6+ entrypoint = "bin/start-tilt"
67)
78
89k8s_yaml (local ("helm template snyk-monitor | ./add-ns.py snyk-monitor" ))
10+ k8s_resource ('snyk-monitor' , port_forwards = '9229:9229' )
911watch_file ("snyk-monitor" )
12+
13+
14+ # vscode config:
15+ # {
16+ # "type": "node",
17+ # "request": "attach",
18+ # "name": "Attach to Remote",
19+ # "address": "127.0.0.1",
20+ # "port": 9229,
21+ # "localRoot": "${workspaceFolder}",
22+ # "remoteRoot": "/root"
23+ # }
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ npm install tslint typescript tsc-watch -g
4+ exec tsc-watch --project tsconfig.json --onSuccess ' node --inspect-brk=0.0.0.0:9229 .'
You can’t perform that action at this time.
0 commit comments