Initial commit.

This commit is contained in:
Cameron Redmore 2025-05-19 11:40:56 +01:00
commit b022bca449
20 changed files with 7405 additions and 0 deletions

18
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,18 @@
{
"version": "2.0.0",
"tasks": [
{
"args": [
"start"
],
"command": "pnpm",
"group": "build",
"isBackground": true,
"label": "Run Electron App",
"problemMatcher": [
"$electron"
],
"type": "shell"
}
]
}