Initial commit.
Linting and tests / Linting (push) Failing after 30s
Linting and tests / Tests (push) Successful in 25s

This commit is contained in:
2026-06-10 10:23:00 +05:00
commit 3d43b8a84e
34 changed files with 1325 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
// Используйте IntelliSense, чтобы узнать о возможных атрибутах.
// Наведите указатель мыши, чтобы просмотреть описания существующих атрибутов.
// Для получения дополнительной информации посетите: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "vikunja-notifier docker debug",
"type": "go",
"debugAdapter": "dlv-dap",
"request": "attach",
"mode": "remote",
"port": 49001,
"host": "127.0.0.1",
"stopOnEntry": true,
"substitutePath": [
{
"from": "${workspaceFolder}",
"to": "/vikunja-notifier"
}
],
"preLaunchTask": "Run vikunja-notifier debug build",
"postDebugTask": "Stop vikunja-notifier debug build"
}
]
}
+31
View File
@@ -0,0 +1,31 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run vikunja-notifier debug build",
"type": "shell",
"command": "task deployments:localdev:vikunja-notifier:down; task deployments:localdev:vikunja-notifier:up-debug",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
// Do not open terminal every time debug is launched.
"reveal": "silent"
}
},
{
"label": "Stop vikunja-notifier debug build",
"type": "shell",
"command": "task deployments:localdev:vikunja-notifier:down-debug",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
// Do not open terminal every time debug is launched.
"reveal": "silent"
}
}
]
}