Remove old client and add new

This commit is contained in:
programmingPug
2025-01-04 14:41:08 -05:00
parent 42aa91f479
commit 0d7f77b1e3
56 changed files with 2158 additions and 1817 deletions

20
plant-browser/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,20 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ng serve",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
},
{
"name": "ng test",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: test",
"url": "http://localhost:9876/debug.html"
}
]
}