feat: move to secure OS credential storage so that you never get logged out again

This commit is contained in:
Simeon Radivoev 2026-02-10 00:35:37 +02:00
parent d6e0a8350a
commit ef08fa6114
Signed by: simeonradivoev
GPG key ID: 7611A451D2A5D37A
15 changed files with 493 additions and 276 deletions

36
.vscode/launch.json vendored
View file

@ -4,35 +4,29 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "bun",
"internalConsoleOptions": "neverOpen",
"request": "launch",
"name": "Debug File",
"program": "./src/bun/index.ts",
"cwd": "${workspaceFolder}",
"stopOnEntry": false,
"watchMode": true
},
{
"type": "bun",
"internalConsoleOptions": "neverOpen",
"request": "launch",
"name": "Run File",
"program": "./src/bun/index.ts",
"cwd": "${workspaceFolder}",
"noDebug": true,
"watchMode": false
"name": "Attach to Edge",
"port": 9222,
"request": "attach",
"type": "msedge",
"webRoot": "${workspaceFolder}/src",
},
{
"type": "bun",
"internalConsoleOptions": "neverOpen",
"request": "attach",
"name": "Attach Bun",
"url": "ws://127.0.0.1:9229/nvnfnsqez8s",
"url": "ws://127.0.0.1:9229/7lt63qegtr8",
"localRoot": "${workspaceFolder}",
"stopOnEntry": false
"stopOnEntry": false,
}
],
"compounds": [
{
"name": "Attach Debug App",
"configurations": ["Attach Bun", "Attach to Edge"],
"stopAll": true,
"preLaunchTask": "bun: dev"
}
]
}