Skip to content

Instantly share code, notes, and snippets.

@wassname
Created May 19, 2024 02:19
Show Gist options
  • Save wassname/b6a42c72c151cb9c862908327ff72b86 to your computer and use it in GitHub Desktop.
Save wassname/b6a42c72c151cb9c862908327ff72b86 to your computer and use it in GitHub Desktop.
my typical vscode debugger options
{
// 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": "test",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/twm/main.py",
"console": "integratedTerminal",
"justMyCode": false,
"autoReload": {"enable": true,},
"env": {"WANDB_MODE":"disabled","WANDB_SILENT":"true",},
"args": [
// "--game=Craftax-Symbolic-AutoReset-v1",
"--game=Breakout",
]
},
{
"name": "run",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/twm/main.py",
"console": "integratedTerminal",
"justMyCode": false,
"autoReload": {"enable": true,},
"env": {"HYDRA_FULL_ERROR":"1"},
"args": [
"--wandb='enabled'",
// "--game=Craftax-Symbolic-AutoReset-v1",
"--game=Breakout",
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment