launch.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. // "parseHelp",
  29. // "./content.json"
  30. // "trainChatbot",
  31. // "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."
  32. ],
  33. "env": {
  34. // "ENV_NAME": "production"
  35. },
  36. "django": true,
  37. "justMyCode": false
  38. }
  39. ]
  40. }