create launch.json

This commit is contained in:
2023-09-05 16:53:13 +02:00
parent b0e2704ab7
commit a8e7f0c882
+20
View File
@@ -0,0 +1,20 @@
{
// 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": "Launch bot",
"type": "python",
"request": "launch",
"program": "bot.py",
"console": "integratedTerminal",
"justMyCode": true,
"env":{
"DISCORD_TOKEN":"",
"TONE_ENDPOINT":"https://toneapi.ovh"
}
}
]
}