finalize migration (yay)

This commit is contained in:
tw-blue
2025-12-10 22:11:30 +01:00
parent cd6cfec7f3
commit c7d53c88bc
40 changed files with 966 additions and 499 deletions
+11 -6
View File
@@ -8,13 +8,9 @@
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}\\dist\\index.js",
"outFiles": [
"${workspaceFolder}/**/*.js"
],
"outFiles": ["${workspaceFolder}/**/*.js"],
"env": {
"TKD_DB_USER": "webapi",
"TKD_DB_PASSWORD": "devpassword",
@@ -22,6 +18,15 @@
"TKD_COOKIE_SECRET": "devsecret"
},
"runtimeExecutable": "C:\\Users\\Toni\\AppData\\Roaming\\fnm\\aliases\\default\\node"
},
{
"name": "Attach to Gandalf",
"type": "node",
"request": "attach",
"address": "192.168.2.250",
"port": 9229,
"localRoot": "${workspaceFolder}",
"remoteRoot": "/var/www/api"
}
]
}