Skip to content

Commit

Permalink
Add debug configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
19759 committed Feb 2, 2025
1 parent f3bc69c commit f8e125d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
// 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": [

{
"request": "launch",
"name": "Debug update-feed",
"type": "node",
"program": "${workspaceFolder}/main.ts",
"cwd": "${workspaceFolder}/bluesky-feed-gen",
"env": {},
"runtimeExecutable": "/Users/sidi/.deno/bin/deno",
"runtimeArgs": [
"run",
"--unstable",
"--inspect-wait",
"--allow-all",
"--env-file",
"./generate-solomon-threads-feed.ts"
],
"attachSimplePort": 9229
}
]
}

0 comments on commit f8e125d

Please sign in to comment.