From 4f8e42f834dd1aa6837d12ced70ca989361322ab Mon Sep 17 00:00:00 2001 From: Nathan McDougall Date: Tue, 22 Apr 2025 11:35:32 +1200 Subject: [PATCH] Add documentation for how to create a board for a shared network drive with caching --- docs/get_started.qmd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/get_started.qmd b/docs/get_started.qmd index 6ad58b75..4b8096fb 100644 --- a/docs/get_started.qmd +++ b/docs/get_started.qmd @@ -16,7 +16,7 @@ Google Cloud Storage, Azure, and more. This vignette will introduce you to the basics of pins. ```{python} -from pins import board_local, board_folder, board_temp, board_url +from pins import board, board_local, board_folder, board_temp, board_url ``` ## Getting started @@ -36,6 +36,7 @@ Here are a few options: board = board_local() # share data across R sessions on the same computer board = board_folder("~/Dropbox") # share data with others using dropbox board = board_folder("Z:\\my-team\pins") # share data using a shared network drive +board = board("file", "Z:\\my-team\pins") # share data using a shared network drive with caching board = board_connect() # share data with Posit Connect ```