launch.json 780 B

123456789101112131415161718192021222324252627282930313233
  1. {
  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}/manage.py",
  12. "args": [
  13. "runserver"
  14. ],
  15. "django": true,
  16. "justMyCode": true
  17. },
  18. {
  19. "name": "Command",
  20. "type": "python",
  21. "request": "launch",
  22. "program": "${workspaceFolder}/manage.py",
  23. "args": [
  24. "trainChatbot"
  25. ],
  26. "env": {
  27. // "ENV_NAME": "production"
  28. },
  29. "django": true,
  30. "justMyCode": false
  31. }
  32. ]
  33. }