🧱 update CI workflow and remove alpinejs frontend files
Some checks failed
CI / Lint (push) Successful in 21s
CI / Helm Lint (push) Successful in 5s
CI / Build (push) Failing after 43s
CI / Test (push) Has been skipped

This commit is contained in:
Christian van Dijk
2026-02-23 15:46:31 +01:00
parent a545ef5af4
commit a6daab7961
17 changed files with 78 additions and 53 deletions

35
frontend/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,35 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run app",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "deno",
"runtimeArgs": [
"run",
"--inspect",
"--allow-net",
"--allow-read",
"--allow-write",
"--allow-env",
"--watch",
"main.ts"
],
"attachSimplePort": 9229,
"console": "integratedTerminal",
"serverReadyAction": {
"action": "startDebugging",
"pattern": "URL: http",
"name": "client"
}
},
{
"name": "client",
"type": "chrome",
"request": "launch",
"url": "http://localhost:8000"
}
]
}

5
frontend/.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"deno.enable": true,
"deno.lint": true,
"deno.enablePaths": ["."]
}