launch.json 986 B

12345678910111213141516171819202122232425262728293031323334
  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. "Olá >>> Olá {{name}}! Eu sou a Mel, bot da operação Mobees. Prazer! Fui criada para ajudar no relacionamento e manutenção dos equipamentos, e deixar nossa Parceria em fina sintonia! 😉"
  26. ],
  27. "env": {
  28. // "ENV_NAME": "production"
  29. },
  30. "django": true,
  31. "justMyCode": false
  32. }
  33. ]
  34. }