Some git cleanup

This commit is contained in:
2022-07-29 07:28:09 +05:30
parent 3fbc11d3e3
commit e5dbe741f0
4 changed files with 45 additions and 1 deletions

26
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,26 @@
{
// 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": [
{
"command": "npm start",
"name": "ng serve",
"request": "launch",
"type": "node-terminal",
"cwd": "${workspaceFolder}/overlord",
},
{
"name": "Python: FastAPI",
"type": "python",
"request": "launch",
"module": "brewman",
"cwd": "${workspaceFolder}/brewman",
"args": [
],
"jinja": true,
"justMyCode": true,
}
]
}