123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- // 使用 IntelliSense 了解相关属性。
- // 悬停以查看现有属性的描述。
- // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Run Server",
- "type": "python",
- "request": "launch",
- "program": "${workspaceFolder}\\manage.py",
- "args": [
- "runserver"
- ],
- "django": true,
- "justMyCode": true,
- "python":"D:\\Users\\Jees\\Documents\\coding\\PLM\\PLM\\venv\\Scripts\\python.exe"
- },
- {
- "name": "migrate",
- "type": "python",
- "request": "launch",
- "program": "${workspaceFolder}\\manage.py",
- "args": [
- "migrate"
- ],
- "django": true,
- "justMyCode": true,
- "python":"D:\\Users\\Jees\\Documents\\coding\\PLM\\PLM\\venv\\Scripts\\python.exe"
- },
- {
- "name": "make migrations",
- "type": "python",
- "request": "launch",
- "program": "${workspaceFolder}\\manage.py",
- "args": [
- "makemigrations"
- ],
- "django": true,
- "justMyCode": true,
- "python":"D:\\Users\\Jees\\Documents\\coding\\PLM\\PLM\\venv\\Scripts\\python.exe"
- },
- ]
- }
|