Merge branch 'weblate-gnu-mailman-postorius' into 'master'
[mailman-postorious.git] / .vscode / launch.json
blobc145edb258803b87f6adac57d0102e626f09603b
2     // Use IntelliSense to learn about possible attributes.
3     // Hover to view descriptions of existing attributes.
4     // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5     "version": "0.2.0",
6     "configurations": [
7         {
8             "name": "Python: Django",
9             "type": "python",
10             "request": "launch",
11             "program": "${workspaceFolder}/example_project/manage.py",
12             "args": [
13                 "runserver"
14             ],
15             "django": true,
16             "justMyCode": true
17         },
18         {
19             "name": "Python:  Initial Migration",
20             "type": "python",
21             "request": "launch",
22             "program": "${workspaceFolder}/example_project/manage.py",
23             "args": [
24                 "migrate"
25             ],
26             "justMyCode": true
27         }
28     ]