@@ -33,9 +33,10 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
33
33
"request" : " launch" ,
34
34
"mode" : " debug" ,
35
35
"program" : " cmd/livepeer_cli" ,
36
+ "console" : " integratedTerminal" ,
36
37
"buildFlags" : " -ldflags=-extldflags=-lm" , // Fix missing symbol error.
37
38
"args" : [
38
- // "--http=8935 ", // Uncomment for Orch CLI.
39
+ // "--http=7935 ", // Uncomment for Orch CLI.
39
40
" --http=5935" // Uncomment for Gateway CLI.
40
41
]
41
42
},
@@ -208,9 +209,10 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
208
209
"request" : " launch" ,
209
210
"mode" : " debug" ,
210
211
"program" : " cmd/livepeer_cli" ,
212
+ "console" : " integratedTerminal" ,
211
213
"buildFlags" : " -ldflags=-extldflags=-lm" , // Fix missing symbol error.
212
214
"args" : [
213
- // "--http=8935 ", // Uncomment for Orch CLI.
215
+ // "--http=7935 ", // Uncomment for Orch CLI.
214
216
" --http=5935" // Uncomment for Gateway CLI.
215
217
]
216
218
},
@@ -271,6 +273,7 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
271
273
"buildFlags" : " -ldflags=-extldflags=-lm" , // Fix missing symbol error.
272
274
"args" : [
273
275
" -gateway" ,
276
+ " -datadir=${env:HOME}/.lpData2" ,
274
277
" -orchAddr=0.0.0.0:8935" ,
275
278
" -httpAddr=0.0.0.0:9935" ,
276
279
" -v" ,
@@ -288,6 +291,7 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
288
291
"args" : [
289
292
" -orchestrator" ,
290
293
" -aiWorker" ,
294
+ " -aiServiceRegistry" ,
291
295
" -serviceAddr=0.0.0.0:8935" ,
292
296
" -v=6" ,
293
297
" -nvidia=all" ,
@@ -310,6 +314,7 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
310
314
"args" : [
311
315
" -orchestrator" ,
312
316
" -orchSecret=orchSecret" ,
317
+ " -aiServiceRegistry" ,
313
318
" -serviceAddr=0.0.0.0:8935" ,
314
319
" -v=6" ,
315
320
" -network=arbitrum-one-mainnet" ,
@@ -346,7 +351,8 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
346
351
"buildFlags" : " -tags=mainnet,experimental -ldflags=-extldflags=-lm" , // Fix missing symbol error and enable mainnet.
347
352
"args" : [
348
353
" -gateway" ,
349
- " -transcodingOptions=${env:HOME}/.lpData/offchain/transcodingOptions.json" ,
354
+ " -aiServiceRegistry" ,
355
+ " -datadir=${env:HOME}/.lpData2" ,
350
356
" -orchAddr=0.0.0.0:8935" ,
351
357
" -httpAddr=0.0.0.0:9935" ,
352
358
" -v" ,
@@ -369,7 +375,7 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
369
375
"stopAll" : true
370
376
},
371
377
{
372
- "name" : " Launch full stack (on-chain)" ,
378
+ "name" : " Launch full AI stack (on-chain)" ,
373
379
"configurations" : [" Launch AI O/W (on-chain)" , " Launch AI G (on-chain)" ],
374
380
"stopAll" : true
375
381
}
0 commit comments