Add a VSCode launch.json (#64)

This makes debugging with breakpoints etc easier in VSC
This commit is contained in:
MMK21 2025-10-21 10:31:45 +01:00 committed by GitHub
parent e3daf55718
commit 3029ca9627
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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

@ -0,0 +1,15 @@
{
// 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 Debugger: Run Nephthys",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/nephthys/__main__.py",
"console": "integratedTerminal"
}
]
}