-
Notifications
You must be signed in to change notification settings - Fork 0
/
launch.json
38 lines (38 loc) · 991 Bytes
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"version": "0.2.0",
"configurations": [
{
"name": "Build & Deploy contracts",
"type": "python",
"request": "launch",
"module": "smart_contracts",
"cwd": "${workspaceFolder}",
"preLaunchTask": "Start AlgoKit LocalNet",
"envFile": "${workspaceFolder}/.env.localnet"
},
{
"name": "Deploy contracts",
"type": "python",
"request": "launch",
"module": "smart_contracts",
"args": ["deploy"],
"cwd": "${workspaceFolder}",
"envFile": "${workspaceFolder}/.env.localnet"
},
{
"name": "Build contracts",
"type": "python",
"request": "launch",
"module": "smart_contracts",
"args": ["build"],
"cwd": "${workspaceFolder}"
},
{
"type": "avm",
"request": "launch",
"name": "Debug TEAL via AlgoKit AVM Debugger",
"simulateTraceFile": "${workspaceFolder}/${command:PickSimulateTraceFile}",
"stopOnEntry": true
}
]
}