Skip to content

Commit

Permalink
remove .vscode from .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
alguadam committed Sep 6, 2024
1 parent 994df3a commit 43216c0
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.venv/
__pycache__/
.env
.vscode
## .vscode
.db/
27 changes: 27 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
// 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": "IE Bank Backend",
"type": "python",
"request": "launch",
"module": "flask",
"env": {
"FLASK_APP": "app.py",
"FLASK_DEBUG": "1",
"ENV": "local",
"APPINSIGHTS_INSTRUMENTATIONKEY": "3c75b957-a1d0-4ddb-ab2d-a0521c35c566"
},
"args": [
"run",
"--no-debugger",
"--no-reload"
],
"jinja": true,
"justMyCode": true
}
]
}
Binary file added instance/local.db
Binary file not shown.

0 comments on commit 43216c0

Please sign in to comment.