launch.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. "7003",
  15. ],
  16. "env": {
  17. // "ENV_NAME": "production"
  18. },
  19. "django": true,
  20. "justMyCode" : false
  21. },
  22. {
  23. "name": "Command",
  24. "type": "python",
  25. "request": "launch",
  26. "program": "${workspaceFolder}/manage.py",
  27. "args": [
  28. "trainChatbot",
  29. "Não recebi o pagamento ainda >>> Você deve ter 160 horas de exibição de anúncios nas cidades que a Mobees já está presente, até a data do Fechamento. Caso você tenha completado as 160 horas, o pagamento acontece sempre no dia 10 do mês seguinte à data do Fechamento do ciclo – até às 23:59."
  30. ],
  31. "env": {
  32. // "ENV_NAME": "production"
  33. },
  34. "django": true,
  35. "justMyCode": false
  36. }
  37. ]
  38. }