umyuu commited on
Commit
a5d9d1b
·
1 Parent(s): aae4726

vscodeのデバック実行の環境設定を追加します。

Browse files
Files changed (1) hide show
  1. .vscode/launch.json +16 -0
.vscode/launch.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ // IntelliSense を使用して利用可能な属性を学べます。
3
+ // 既存の属性の説明をホバーして表示します。
4
+ // 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+ {
8
+ "name": "Python デバッガー: 引数を含む現在のファイル",
9
+ "type": "debugpy",
10
+ "request": "launch",
11
+ "program": "app.py",
12
+ "console": "integratedTerminal",
13
+ "args": "${command:pickArgs}"
14
+ }
15
+ ]
16
+ }