Skip to content

Document how to create a board for a shared network drive with caching #327

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/get_started.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```

Expand Down
Loading