Files
NEXARxCLAUDE/.vscode/launch.json

15 lines
379 B
JSON
Raw Normal View History

2026-04-15 12:31:17 +01:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Run nexarxclaude",
"type": "debugpy",
"request": "launch",
2026-04-15 16:01:02 +01:00
"python": "/usr/bin/python3",
2026-04-15 12:31:17 +01:00
"program": "${workspaceFolder}/nexarxclaude.py",
"console": "integratedTerminal",
"envFile": "${workspaceFolder}/.env"
}
]
}