initial commit

This commit is contained in:
root
2025-10-11 17:03:02 +02:00
commit 08dbb6210e
51 changed files with 3420 additions and 0 deletions

45
template/.vscode/launch.json.jinja vendored Normal file
View File

@@ -0,0 +1,45 @@
{
// 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": [
{
"name": "Python: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: Run Main with args",
"type": "debugpy",
"request": "launch",
"module": "{{ package_name }}.main",
"args": ["-w", "world"],
"console": "integratedTerminal",
"justMyCode": true
},
{
// This example launch-config promtps for arguments.
// You can tinker with it to specifically ask for arguments you have defined.
// To do so, create apropriate inputs and reference them here.
"name": "Python: Main, prompt for args",
"type": "debugpy",
"request": "launch",
"module": "{{ package_name }}.main",
"args": ["${input:args}"],
"console": "integratedTerminal",
"justMyCode": true
},
],
"inputs": [
{
"id": "args",
"type":"promptString",
"description": "Arguments for main",
"default": "-w word"
},
]
}