update .gitignore to ignore .vscode folder

This commit is contained in:
Michael Becker 2024-04-13 20:02:49 -04:00
parent d36fb6b928
commit 836fc5648d
4 changed files with 2 additions and 90 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
__pycache__
*.mql
.vscode

View File

@ -1,5 +0,0 @@
{
"recommendations": [
"ms-vscode.hexeditor"
]
}

69
.vscode/launch.json vendored
View File

@ -1,69 +0,0 @@
{
// 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": "Python: Mocha Web",
"type": "python",
"request": "launch",
"program": "./python/mocha-web.py",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: SUV Manager",
"type": "python",
"request": "launch",
"program": "./common/admin/suv-manager/python/SUVManager.py",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "SUV Manager Debug",
"type": "php",
"request": "launch",
"runtimeArgs": [
"-S",
"localhost:8000",
"-t",
"./common/admin/suv-manager/php"
],
"port": 9003,
"serverReadyAction": {
"action": "openExternally"
}
},
{
"name": "Launch built-in server and debug",
"type": "php",
"request": "launch",
"runtimeArgs": [
"-S",
"localhost:8000",
"-t",
"."
],
"port": 9003,
"serverReadyAction": {
"action": "openExternally"
}
},
{
"name": "Debug current script in console",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"externalConsole": false,
"port": 9003
},
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9003
}
]
}

16
.vscode/settings.json vendored
View File

@ -1,16 +0,0 @@
{
"sqltools.connections": [
{
"previewLimit": 50,
"driver": "SQLite",
"name": "mocha-suv-manager",
"database": "/home/beckermj/.config/mocha-suv-manager.sqlite3"
},
{
"previewLimit": 50,
"driver": "SQLite",
"name": "test_mql",
"database": "${workspaceFolder:mocha}/python/test.mql"
}
]
}