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
The config.yaml file should be written to tempfile(fileext = ".yaml)
data_products can be added using add_read() and add_write(); note that these function names are already taken by functions used to generate user-written config files for the unit tests
The location of this file could be passed in the handle
If the CLI is wrapped, then check first whether fair is installed:
if (Sys.which("fair") == "")
stop("fair CLI isn't installed")
If it's not, do we want to install it automatically (as is done in the CI) or throw an error and prompt the user to install it themselves?
Likewise for the registry.
Do we want the user to create their own virtual environment, or create and activate one automatically (as is done in the CI)?
The text was updated successfully, but these errors were encountered:
tempfile(fileext = ".yaml)
data_product
s can be added usingadd_read()
andadd_write()
; note that these function names are already taken by functions used to generate user-written config files for the unit testsIf the CLI is wrapped, then check first whether
fair
is installed:The text was updated successfully, but these errors were encountered: