launch.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. // 使用 IntelliSense 了解相关属性。
  3. // 悬停以查看现有属性的描述。
  4. // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Run Server",
  9. "type": "python",
  10. "request": "launch",
  11. "program": "${workspaceFolder}\\manage.py",
  12. "args": [
  13. "runserver"
  14. ],
  15. "django": true,
  16. "justMyCode": true,
  17. "python":"D:\\Users\\Jees\\Documents\\coding\\PLM\\PLM\\venv\\Scripts\\python.exe"
  18. },
  19. {
  20. "name": "migrate",
  21. "type": "python",
  22. "request": "launch",
  23. "program": "${workspaceFolder}\\manage.py",
  24. "args": [
  25. "migrate"
  26. ],
  27. "django": true,
  28. "justMyCode": true,
  29. "python":"D:\\Users\\Jees\\Documents\\coding\\PLM\\PLM\\venv\\Scripts\\python.exe"
  30. },
  31. {
  32. "name": "make migrations",
  33. "type": "python",
  34. "request": "launch",
  35. "program": "${workspaceFolder}\\manage.py",
  36. "args": [
  37. "makemigrations"
  38. ],
  39. "django": true,
  40. "justMyCode": true,
  41. "python":"D:\\Users\\Jees\\Documents\\coding\\PLM\\PLM\\venv\\Scripts\\python.exe"
  42. },
  43. ]
  44. }