You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLI.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1067,6 +1067,7 @@ Options:
1067
1067
| --dataset \<address\|"deployed"\>| dataset address, use "deployed" to use last deployed from "deployed.json" |
1068
1068
| --workerpool \<address\|"deployed"\>| workerpool address, use "deployed" to use last deployed from "deployed.json" |
1069
1069
| --args \<string\>| specify the arguments to pass to the app |
1070
+
| --bulk-cid \<CID\>| specify the bulk CID to use for the request |
1070
1071
| --input-files \<fileUrl\>| specify the URL of input files to be used by the app<br/>\* usage: --input-files https://example.com/foo.txt,https://example.com/bar.zip|
1071
1072
| --secret \<secretMapping...\>| specify the requester secrets mappings (\<appSecretKey\>=\<requesterSecretName\>) to use in the app (only available for TEE tasks, use with --tag tee)<br/>\* usage: <br/> \*\[command\]\[args\] --secret 1=login 2=password<br/> \*\[command\]\[args\] --secret 1=login --secret 2=password<br/> \*\[command\] --secret 1=login --secret 2=password -- \[args\]<br/>\* please note that this option is variadic, any number of mappings can be passed, use `--` to stop the list<br/> |
1072
1073
| --category \<id\>| id of the task category |
@@ -1109,6 +1110,7 @@ Options:
1109
1110
| --dataset-price \<amount unit...\>| dataset price per task (default unit nRLC) |
1110
1111
| --workerpool-price \<amount unit...\>| workerpool price per task (default unit nRLC) |
1111
1112
| --args \<string\>| specify the arguments to pass to the app |
1113
+
| --bulk-cid \<CID\>| specify the bulk CID to use for the request |
1112
1114
| --input-files \<fileUrl\>| specify the URL of input files to be used by the app<br/>\* usage: --input-files https://example.com/foo.txt,https://example.com/bar.zip|
1113
1115
| --secret \<secretMapping...\>| specify the requester secrets mappings (\<appSecretKey\>=\<requesterSecretName\>) to use in the app (only available for TEE tasks, use with --tag tee)<br/>\* usage: <br/> \*\[command\]\[args\] --secret 1=login 2=password<br/> \*\[command\]\[args\] --secret 1=login --secret 2=password<br/> \*\[command\] --secret 1=login --secret 2=password -- \[args\]<br/>\* please note that this option is variadic, any number of mappings can be passed, use `--` to stop the list<br/> |
Copy file name to clipboardExpand all lines: src/cli/utils/cli-helper.js
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -498,6 +498,10 @@ export const orderOption = {
498
498
'--args <string>',
499
499
'specify the arguments to pass to the app',
500
500
],
501
+
requestBulkCid: ()=>[
502
+
'--bulk-cid <CID>',
503
+
'specify the bulk CID to use for the request',
504
+
],
501
505
requestSecrets: ()=>[
502
506
'--secret <secretMapping...>',
503
507
'specify the requester secrets mappings (<appSecretKey>=<requesterSecretName>) to use in the app (only available for TEE tasks, use with --tag tee)\n* usage: \n * [command] [args] --secret 1=login 2=password\n * [command] [args] --secret 1=login --secret 2=password\n * [command] --secret 1=login --secret 2=password -- [args]\n* please note that this option is variadic, any number of mappings can be passed, use `--` to stop the list\n',
0 commit comments