Skip to content

Commit e9e0922

Browse files
authored
Merge branch 'master' into add_ai_service_registry_info_log
2 parents f858b28 + 2b32793 commit e9e0922

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

doc/development.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
3333
"request": "launch",
3434
"mode": "debug",
3535
"program": "cmd/livepeer_cli",
36+
"console": "integratedTerminal",
3637
"buildFlags": "-ldflags=-extldflags=-lm", // Fix missing symbol error.
3738
"args": [
38-
// "--http=8935", // Uncomment for Orch CLI.
39+
// "--http=7935", // Uncomment for Orch CLI.
3940
"--http=5935" // Uncomment for Gateway CLI.
4041
]
4142
},
@@ -208,9 +209,10 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
208209
"request": "launch",
209210
"mode": "debug",
210211
"program": "cmd/livepeer_cli",
212+
"console": "integratedTerminal",
211213
"buildFlags": "-ldflags=-extldflags=-lm", // Fix missing symbol error.
212214
"args": [
213-
// "--http=8935", // Uncomment for Orch CLI.
215+
// "--http=7935", // Uncomment for Orch CLI.
214216
"--http=5935" // Uncomment for Gateway CLI.
215217
]
216218
},
@@ -271,6 +273,7 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
271273
"buildFlags": "-ldflags=-extldflags=-lm", // Fix missing symbol error.
272274
"args": [
273275
"-gateway",
276+
"-datadir=${env:HOME}/.lpData2",
274277
"-orchAddr=0.0.0.0:8935",
275278
"-httpAddr=0.0.0.0:9935",
276279
"-v",
@@ -288,6 +291,7 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
288291
"args": [
289292
"-orchestrator",
290293
"-aiWorker",
294+
"-aiServiceRegistry",
291295
"-serviceAddr=0.0.0.0:8935",
292296
"-v=6",
293297
"-nvidia=all",
@@ -310,6 +314,7 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
310314
"args": [
311315
"-orchestrator",
312316
"-orchSecret=orchSecret",
317+
"-aiServiceRegistry",
313318
"-serviceAddr=0.0.0.0:8935",
314319
"-v=6",
315320
"-network=arbitrum-one-mainnet",
@@ -346,7 +351,8 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
346351
"buildFlags": "-tags=mainnet,experimental -ldflags=-extldflags=-lm", // Fix missing symbol error and enable mainnet.
347352
"args": [
348353
"-gateway",
349-
"-transcodingOptions=${env:HOME}/.lpData/offchain/transcodingOptions.json",
354+
"-aiServiceRegistry",
355+
"-datadir=${env:HOME}/.lpData2",
350356
"-orchAddr=0.0.0.0:8935",
351357
"-httpAddr=0.0.0.0:9935",
352358
"-v",
@@ -369,7 +375,7 @@ To debug the code, it is recommended to use [Visual Studio Code](https://code.vi
369375
"stopAll": true
370376
},
371377
{
372-
"name": "Launch full stack (on-chain)",
378+
"name": "Launch full AI stack (on-chain)",
373379
"configurations": ["Launch AI O/W (on-chain)", "Launch AI G (on-chain)"],
374380
"stopAll": true
375381
}

0 commit comments

Comments
 (0)