Initial Commit
Some checks are pending
Build Docker Image / docker (push) Waiting to run
Test / test (push) Waiting to run

This commit is contained in:
Lillith Rose (Device: Lucia) 2025-06-08 14:33:19 -04:00
commit fdeba8fd41
17 changed files with 2290 additions and 0 deletions

13
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,13 @@
{
"configurations": [
{
"name": "Launch Program",
"program": "${workspaceFolder}/dist/index.js",
"request": "launch",
"sourceMaps": true,
"skipFiles": ["<node_internals>/**"],
"type": "node",
"preLaunchTask": "${defaultBuildTask}"
}
]
}