2024-10-21 01:24:07 +00:00
|
|
|
{
|
|
|
|
// 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",
|
2024-10-21 04:20:41 +00:00
|
|
|
"name": "Reinitialize database",
|
2024-10-21 01:24:07 +00:00
|
|
|
"type": "node",
|
|
|
|
"runtimeExecutable": "/usr/bin/deno",
|
|
|
|
"runtimeArgs": [
|
|
|
|
"run",
|
|
|
|
"--no-prompt",
|
2024-10-21 02:00:59 +00:00
|
|
|
"--allow-all",
|
2024-10-21 04:20:41 +00:00
|
|
|
"--inspect-wait"
|
2024-10-21 01:24:07 +00:00
|
|
|
],
|
2024-10-22 08:29:25 +00:00
|
|
|
"program": "${workspaceFolder}/src/entry/dbInit.ts",
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"envFile": "${workspaceFolder}/local.env",
|
2024-10-21 01:24:07 +00:00
|
|
|
"attachSimplePort": 9229
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"request": "launch",
|
2024-10-21 04:20:41 +00:00
|
|
|
"name": "Dev Server",
|
2024-10-21 01:24:07 +00:00
|
|
|
"type": "node",
|
|
|
|
"runtimeExecutable": "/usr/bin/deno",
|
|
|
|
"runtimeArgs": [
|
|
|
|
"run",
|
|
|
|
"--no-prompt",
|
2024-10-21 02:00:59 +00:00
|
|
|
"--allow-all",
|
2024-10-21 04:20:41 +00:00
|
|
|
"--inspect-wait"
|
2024-10-21 01:24:07 +00:00
|
|
|
],
|
2024-10-22 08:29:25 +00:00
|
|
|
"program": "${workspaceFolder}/src/entry/server.ts",
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"envFile": "${workspaceFolder}/local.env",
|
2024-10-21 01:24:07 +00:00
|
|
|
"attachSimplePort": 9229
|
2024-10-21 04:20:41 +00:00
|
|
|
}
|
2024-10-21 01:24:07 +00:00
|
|
|
]
|
|
|
|
}
|