github.com/metaworking/channeld@v0.7.3/.vscode/launch.json (about) 1 { 2 // Use IntelliSense to learn about possible attributes. 3 // Hover to view descriptions of existing attributes. 4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 "version": "0.2.0", 6 "configurations": [ 7 { 8 "name": "Launch test function", 9 "type": "go", 10 "request": "launch", 11 "mode": "test", 12 "program": "${workspaceFolder}", 13 "args": [ 14 "-test.run", 15 "MyTestFunction" 16 ] 17 }, 18 { 19 "name": "Launch Package", 20 "type": "go", 21 "request": "launch", 22 "mode": "auto", 23 "program": "${workspaceFolder}" 24 }, 25 { 26 "name": "Launch file", 27 "type": "go", 28 "request": "launch", 29 "mode": "debug", 30 "program": "${file}" 31 }, 32 { 33 "name": "Launch Chat Example", 34 "type": "go", 35 "request": "launch", 36 "mode": "debug", 37 "program": "examples/chat-rooms/main.go", 38 "args": ["-dev", "-loglevel=0", "-profile=cpu", "-ct=1", "-chs=${workspaceFolder}/config/channel_settings_lofi.json"] 39 }, 40 { 41 "name": "Launch Tank Example", 42 "type": "go", 43 "request": "launch", 44 "mode": "debug", 45 "cwd": "${workspaceFolder}", 46 "program": "examples/unity-mirror-tanks/main.go", 47 "args": ["-cfsm=config/client_authoratative_fsm.json", "-dev", "-loglevel=-1", "-profile=cpu", "-ct=0", "-scc=${workspaceFolder}/config/spatial_static_tanks_small.json"] 48 }, 49 { 50 "name": "Launch TPS Example", 51 "type": "go", 52 "request": "launch", 53 "mode": "debug", 54 "cwd": "${workspaceFolder}", 55 "program": "examples/channeld-ue-tps", 56 "args": [ 57 "-dev", 58 "-loglevel=-1", 59 "-logfile=logs/{time}.log", 60 "-ct=0", 61 "-mcb=13", 62 "-cfsm=config/client_authoratative_fsm.json", 63 "-chs=config/channel_settings_ue.json", 64 "-scc=config/spatial_static_2x2.json" 65 ] 66 }, 67 { 68 "name": "Launch Replay Session", 69 "type": "go", 70 "request": "launch", 71 "mode": "debug", 72 "program": "examples/replay/main.go", 73 "args": ["-dev", "-loglevel=0", "-ct=1", "-chs=${workspaceFolder}/config/channel_settings_hifi.json"] 74 }, 75 ] 76 }