pixivcord/.vscode/launch.json

43 lines
1.1 KiB
JSON
Raw Normal View History

2023-10-30 14:58:04 +01:00
{
// 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": [
2023-11-01 21:33:13 +01:00
{
"name": "Python: Remote Attach",
"type": "python",
"request": "attach",
"connect": { "host": "docker.cloud.home", "port": 5678 },
"pathMappings": [
{ "localRoot": "${workspaceFolder}", "remoteRoot": "." }
],
"justMyCode": true
},
2023-10-30 14:58:04 +01:00
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
2023-10-31 11:53:52 +01:00
"program": "src/main.py",
2023-10-30 14:58:04 +01:00
"envFile": "${workspaceFolder}/.env",
"console": "integratedTerminal",
"justMyCode": true
2023-10-30 15:03:53 +01:00
},
{
"name": "Docker: Python - General",
"type": "docker",
"request": "launch",
"preLaunchTask": "docker-run: debug",
"python": {
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/app"
}
],
"projectType": "general"
}
2023-10-30 14:58:04 +01:00
}
]
}