diff --git a/.gitignore b/.gitignore index 2fff5bf..aab5ab8 100644 --- a/.gitignore +++ b/.gitignore @@ -5,5 +5,4 @@ db.sqlite3 node_modules/ static/js/* media/ -.venv/ -.vscode/ \ No newline at end of file +.venv/ \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..841768c --- /dev/null +++ b/.vscode/launch.json @@ -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 + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..bc68848 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "cSpell.words": [ + "Quackscape" + ] +} \ No newline at end of file