This commit is contained in:
rxf
2023-10-25 16:52:37 +02:00
commit 8bda972061
16 changed files with 4590 additions and 0 deletions

21
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
// 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": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/fetchnewdata.js",
"args": [],
"env": {
"MONGOPORT": "27098",
}
}
]
}