Initial commit - frontend

This commit is contained in:
Bailey Taylor
2025-09-19 03:26:52 +00:00
commit 27e9a08ee0
234 changed files with 32097 additions and 0 deletions

10
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,10 @@
{
"git.ignoreLimitWarning": true,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.profiles.windows": {
"Git Bash": {
"path": "C:\\Program Files\\Git\\bin\\bash.exe",
"args": ["--login", "-i"]
}
}
}

61
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,61 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Start DEV Server",
"type": "shell",
"command": "echo -ne '\\033]0;DEV Webserver\\007'; npm run dev:https",
"options": {
"cwd": "C:\\Users\\Sonder\\Git\\ld_sysinfo-react-frontend"
},
"presentation": {
"panel": "dedicated",
"clear": true,
"showReuseMessage": false
},
"isBackground": true,
"problemMatcher": []
},
{
"label": "Start PROD Server",
"type": "shell",
"command": "echo -ne '\\033]0;PROD Webserver\\007'; npm run start:prod",
"options": {
"cwd": "C:\\Users\\Sonder\\Git\\ld_sysinfo-react-frontend"
},
"presentation": {
"panel": "dedicated",
"clear": true,
"showReuseMessage": false
},
"isBackground": true,
"problemMatcher": []
},
{
"label": "Open SCRATCH Terminal",
"detail": "SCRATCH Terminal",
"type": "shell",
"command": "echo -ne '\\033]0;SCRATCH Terminal\\007'; exec bash --login -i",
"options": {
"cwd": "C:\\Users\\Sonder\\Git\\ld_sysinfo-react-frontend"
},
"presentation": {
"panel": "dedicated",
"clear": true,
"showReuseMessage": false
},
"isBackground": true,
"problemMatcher": []
},
{
"label": "Launch All Terminals",
"dependsOn": [
"Start DEV Server",
"Start PROD Server",
"Open SCRATCH Terminal"
],
"dependsOrder": "parallel",
"problemMatcher": []
}
]
}