aidgaf-server/.vscode/launch.json
2023-02-15 03:26:12 +00:00

33 lines
1002 B
JSON

{
// 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": "Start Server",
"type": "python",
"request": "launch",
"program": "src/aidgaf/aidgaf_server/server.py",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "IDGAF",
"type": "python",
"request": "launch",
"program": "src/aidgaf/aidgaf_server/idgaf.py",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true
}
]
}