| 12345678910111213141516171819202122232425262728293031323334 |
- {
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Python: Django",
- "type": "python",
- "request": "launch",
- "program": "${workspaceFolder}/manage.py",
- "args": [
- "runserver"
- ],
- "django": true,
- "justMyCode": true
- },
- {
- "name": "Command",
- "type": "python",
- "request": "launch",
- "program": "${workspaceFolder}/manage.py",
- "args": [
- "trainChatbot",
- "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! 😉"
- ],
- "env": {
- // "ENV_NAME": "production"
- },
- "django": true,
- "justMyCode": false
- }
- ]
- }
|