Finally fixed gitignore

This commit is contained in:
ferdzo
2024-03-15 13:06:49 +01:00
parent 07ea3fc71f
commit 6b1a92e86e
3 changed files with 23 additions and 1 deletions

2
.gitignore vendored
View File

@@ -14,6 +14,6 @@ __pycache__/
# Ignore .DS_Store files
.DS_Store
.vscode/
.vscode\

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

@@ -0,0 +1,19 @@
{
// 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 Debugger: Django",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}\\manage.py",
"args": [
"runserver"
],
"django": true,
"autoStartBrowser": false
}
]
}

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"cmake.configureOnOpen": false
}