This commit is contained in:
Ryan Kegel
2026-02-16 14:57:55 -05:00
committed by Ryan Kegel
parent c17838241a
commit 7a827b14ef
8 changed files with 163 additions and 147 deletions

20
.vscode/launch.json vendored
View File

@@ -2,8 +2,8 @@
"version": "0.2.0",
"configurations": [
{
"name": "Python: Flask",
"type": "debugpy",
"name": "Python: Flask (mac)",
"type": "python",
"request": "launch",
"module": "flask",
"python": "${command:python.interpreterPath}",
@@ -17,7 +17,9 @@
"--port=5000",
"--no-debugger",
"--no-reload"
]
],
"cwd": "${workspaceFolder}/backend",
"console": "integratedTerminal"
},
{
"name": "Vue: Dev Server",
@@ -32,17 +34,17 @@
"console": "integratedTerminal"
},
{
"name": "Chrome: Attach to Vue App",
"type": "chrome",
"name": "Chrome: Launch (Vue App)",
"type": "pwa-chrome",
"request": "launch",
"url": "https://localhost:5173", // or your Vite dev server port
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}/frontend/vue-app"
},
{
"name": "Python: Backend Tests",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/backend/.venv/Scripts/pytest.exe",
"module": "pytest",
"args": [
"tests/"
],
@@ -68,9 +70,9 @@
{
"name": "Full Stack (Backend + Frontend)",
"configurations": [
"Python: Flask",
"Python: Flask (mac)",
"Vue: Dev Server",
"Chrome: Attach to Vue App"
"Chrome: Launch (Vue App)"
]
}
]