We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 138d661 commit f553d10Copy full SHA for f553d10
biothings/cli/commands/config.py
@@ -268,6 +268,13 @@ def default_biothings_configuration() -> dict:
268
"HUB_MAX_WORKERS": os.cpu_count(),
269
"MAX_QUEUED_JOBS": 1000
270
}
271
+
272
+ # specific attributes to the biothings-cli application
273
+ cli_configuration = {
274
+ "BIOTHINGS_CLI_PATH": ".biothings_hub/path",
275
+ }
276
+ configuration.update(cli_configuration)
277
278
return configuration
279
280
0 commit comments