diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index efc4208..de09b46 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -10,7 +10,8 @@ "settings": {}, // Add the IDs of extensions you want installed when the container is created. "extensions": [ - "ms-python.python" + "ms-python.python", + "ms-azuretools.vscode-docker" ] // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [], diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..a33a1b2 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // 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": "Telegram Bot", + "type": "python", + "request": "launch", + "program": "bot.py", + "console": "integratedTerminal" + } + ] +} \ No newline at end of file