4 Commits

Author SHA1 Message Date
09d42b14c5 wip 2026-02-16 16:04:44 -05:00
3848be32e8 Merge branch 'next' of https://git.ryankegel.com/ryan/chore into next
All checks were successful
Chore App Build and Push Docker Images / build-and-push (push) Successful in 47s
2026-02-16 15:37:17 -05:00
1aff366fd8 - removed test_data
All checks were successful
Chore App Build and Push Docker Images / build-and-push (push) Successful in 1m36s
2026-02-16 15:33:56 -05:00
22889caab4 wip 2026-02-16 15:13:22 -05:00
2 changed files with 11 additions and 3 deletions

13
.vscode/launch.json vendored
View File

@@ -58,12 +58,19 @@
"name": "Vue: Frontend Tests", "name": "Vue: Frontend Tests",
"type": "node", "type": "node",
"request": "launch", "request": "launch",
"runtimeExecutable": "npx", "runtimeExecutable": "npm",
"windows": {
"runtimeExecutable": "npm.cmd"
},
"runtimeArgs": [ "runtimeArgs": [
"vitest" "run",
"test:unit"
], ],
"cwd": "${workspaceFolder}/frontend/vue-app", "cwd": "${workspaceFolder}/frontend/vue-app",
"console": "integratedTerminal" "console": "integratedTerminal",
"env": {
"PATH": "/opt/homebrew/bin:${env:PATH}"
}
} }
], ],
"compounds": [ "compounds": [

1
backend/.gitignore vendored
View File

@@ -42,6 +42,7 @@ env/
*.sqlite3 *.sqlite3
data/db/*.json data/db/*.json
data/images/ data/images/
test_data/
# Flask # Flask
instance/ instance/