Skip to content

Commit

Permalink
update url
Browse files Browse the repository at this point in the history
  • Loading branch information
shiningstone23 committed Sep 9, 2024
1 parent 364124d commit fa6f984
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
// 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: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"cwd" : "${workspaceFolder}/tutorials",
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "Launch App (Tabular)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/tutorials/finance/app/app.py",
"cwd" : "${workspaceFolder}/tutorials/finance",
"console": "integratedTerminal",
"justMyCode": false
},
{
"name": "Launch App (Image)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/tutorials/image_gradio.py",
"cwd" : "${workspaceFolder}/tutorials",
"console": "integratedTerminal",
"justMyCode": false
}
]
}

0 comments on commit fa6f984

Please sign in to comment.