Skip to contents

Displays store configuration with masked secrets.

Usage

# S3 method for class 'datom_store'
print(x, ...)

Arguments

x

A datom_store object.

...

Ignored.

Value

Invisible x.

Examples

tmp <- tempfile("datom_store_")
store <- datom_store(
  data = datom_store_local(path = tmp),
  data_repo_url = "https://github.com/example/my-project",
  validate = FALSE
)
#>  Created store directory /tmp/Rtmp0YCcPh/datom_store_1a316bb653e0.
print(store)
#> 
#> ── datom store 
#> • Role: "reader"
#> • Data repo: <https://github.com/example/my-project>
#> 
#> Governance:
#> not attached
#> 
#> Data:
#> 
#> ── datom local store component 
#>   • Path: /tmp/Rtmp0YCcPh/datom_store_1a316bb653e0
#>   • Validated: TRUE
unlink(tmp, recursive = TRUE)