Initial commit: Metro Warden TUI network operations center

This commit is contained in:
2026-03-22 21:33:40 -04:00
commit 98a17d9b7e
45 changed files with 4215 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Metro Warden",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/main.py",
"python": "${workspaceFolder}/.venv/bin/python",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Run Tests",
"type": "debugpy",
"request": "launch",
"module": "pytest",
"python": "${workspaceFolder}/.venv/bin/python",
"args": ["-v"],
"console": "integratedTerminal",
"justMyCode": false
}
]
}