Skip to content

Commit f553d10

Browse files
committed
Add a custom cli config variable for the .pth file directory
1 parent 138d661 commit f553d10

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

biothings/cli/commands/config.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,13 @@ def default_biothings_configuration() -> dict:
268268
"HUB_MAX_WORKERS": os.cpu_count(),
269269
"MAX_QUEUED_JOBS": 1000
270270
}
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+
271278
return configuration
272279

273280

0 commit comments

Comments
 (0)