feat: configure VSCode for development

Added .vscode/launch.json for streamlined debugging of the Quackscape development environment, including specific configurations for Python script launches. Introduced .vscode/settings.json to handle custom spellings such as "Quackscape". Updated .gitignore entries by restoring tracking for .vscode.

This setup aims to improve developer productivity and ensure code consistency within the VSCode editor.
This commit is contained in:
Kumi 2024-06-20 20:45:55 +02:00
parent e7824d079a
commit 182857b3e5
Signed by: kumi
GPG key ID: ECBCC9082395383F
3 changed files with 21 additions and 2 deletions

3
.gitignore vendored
View file

@ -5,5 +5,4 @@ db.sqlite3
node_modules/
static/js/*
media/
.venv/
.vscode/
.venv/

15
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Quackscape - Development",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/.venv/bin/quackscape-manage",
"args": [
"rundev"
],
"justMyCode": true
}
]
}

5
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,5 @@
{
"cSpell.words": [
"Quackscape"
]
}