Initial Commit

This commit is contained in:
LukeGus
2024-12-04 21:04:46 -06:00
commit b6a3f881a8
36 changed files with 16998 additions and 0 deletions

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

@@ -0,0 +1,20 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run application",
"type": "node",
"request": "launch",
"cwd": "D:/Programming Projects/SSH-Project/ssh-project/frontend",
"console": "integratedTerminal",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script",
"start"
],
"skipFiles": [
"<node_internals>/**"
]
}
]
}