diff --git a/.gitignore b/.gitignore index d4ecdaccc..915b46e03 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,3 @@ local_settings.py *.sublime-workspace private/ -.vscode/ diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 000000000..f71f5b318 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "ms-python.python", + "tht13.python" + ] +} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..4beae6a5d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Python: Django", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}\\manage.py", + "args": [ + "runserver", "0.0.0.0:8000" + ], + "django": true + } + ] +} \ No newline at end of file