Initialer Import der Synology Scripts

This commit is contained in:
root
2026-08-05 08:43:57 +02:00
commit 5e32a7c411
404 changed files with 79932 additions and 0 deletions
Binary file not shown.
Binary file not shown.
+23
View File
@@ -0,0 +1,23 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "PyDebug: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"args": [],
"justMyCode": true
},
{
"name": "PyDebug: Main File",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py",
"console": "integratedTerminal",
"args": [],
"justMyCode": true
}
]
}
+19
View File
@@ -0,0 +1,19 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Python: Current File",
"type": "shell",
"command": "${command:python.interpreterPath} ${file}",
"args": [],
"group": "build"
},
{
"label": "Python: Main File",
"type": "shell",
"command": "${command:python.interpreterPath} ${workspaceFolder}/main.py",
"args": [],
"group": "build"
}
]
}