VSCode Dev Container

This commit is contained in:
2023-07-23 08:12:42 +05:30
parent 22cac61761
commit e2b8d02063
5 changed files with 99 additions and 7 deletions

12
.vscode/launch.json vendored
View File

@ -5,22 +5,20 @@
"version": "0.2.0",
"configurations": [
{
"command": "npm start",
"name": "ng serve",
"type": "chrome",
"request": "launch",
"type": "node-terminal",
"cwd": "${workspaceFolder}/overlord",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
},
{
"name": "Python: FastAPI",
"type": "python",
"request": "launch",
"module": "brewman",
"args": [],
"cwd": "${workspaceFolder}/brewman",
"args": [
],
"jinja": true,
"justMyCode": true,
"justMyCode": true
}
]
}