Files
archived-discord-bot/.vscode/launch.json
2018-02-25 21:28:16 +05:00

22 lines
583 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "${config:python.pythonPath}",
"program": "${workspaceFolder}/bot.py",
"args": [
"put_bot_user_token_here"
],
"cwd": "${workspaceFolder}",
"env": {},
"envFile": "${workspaceFolder}/.env",
"debugOptions": [
"RedirectOutput"
]
}
]
}