feat: PipeRUN API running

This commit is contained in:
Jelson Stoelben Rodrigues
2025-06-07 08:16:04 -03:00
commit 33101951bc
7 changed files with 2147 additions and 0 deletions

46
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,46 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'piperun-bot'",
"cargo": {
"args": [
"build",
"--bin=piperun-bot",
"--package=piperun-bot"
],
"filter": {
"name": "piperun-bot",
"kind": "bin"
}
},
"args": ["cargo", "run"],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'piperun-bot'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=piperun-bot",
"--package=piperun-bot"
],
"filter": {
"name": "piperun-bot",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}