Displays store configuration with masked secrets.
Usage
# S3 method for class 'datom_store'
print(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)