changed to a non nx monorepo

This commit is contained in:
2025-02-14 18:35:39 -06:00
parent a4f77ac63a
commit 2f16c30dad
57 changed files with 20069 additions and 272 deletions

28
.vscode/launch.json vendored
View File

@@ -10,11 +10,31 @@
"url": "http://localhost:4200/"
},
{
"name": "ng test",
"type": "chrome",
"type": "node",
"request": "launch",
"preLaunchTask": "npm: test",
"url": "http://localhost:9876/debug.html"
"name": "Debug Nest Framework",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "start:debug", "--", "--inspect-brk"],
"autoAttachChildProcesses": true,
"restart": true,
"sourceMaps": true,
"stopOnEntry": false,
"console": "integratedTerminal",
"env": {
"HOST_NAME": "localhost"
}
},
{
"name": "Debug NestJS API",
"type": "node",
"request": "launch",
"runtimeExecutable": "npx",
"runtimeArgs": ["nest", "start", "--debug", "--watch"],
"port": 9229,
"cwd": "${workspaceFolder}/api",
"envFile": "${workspaceFolder}/api/.env",
"console": "integratedTerminal",
"skipFiles": ["<node_internals>/**"]
}
]
}