Skip to content

Commit 019fc1f

Browse files
authored
Merge pull request #125 from rstudio/docs-rsconnect-notes
docs: add notes on pin name when using rsc board
2 parents 3c2f606 + 6aab052 commit 019fc1f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

docs/getting_started.Rmd

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,12 @@ As a general rule of thumb, we don't recommend using pins with files over 500 MB
8989
If you find yourself routinely pinning data larger that this, you might need to reconsider your data engineering pipeline.
9090

9191

92+
```{note}
93+
If you are using the RStudio Connect board (`board_rsconnect`), then you must specify your pin name as
94+
`<user_name>/<content_name>`. For example, `hadely/sales-report`.
95+
```
96+
97+
9298
## Metadata
9399

94100

docs/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ from pins import board_rsconnect
7575
board = board_rsconnect()
7676
#> Connecting to RSC 1.9.0.1 at <https://connect.rstudioservices.com>
7777

78-
board.pin_write(tidy_sales_data, "sales-summary", type = "csv")
78+
board.pin_write(tidy_sales_data, "hadley/sales-summary", type = "csv")
7979
#> Writing to pin 'hadley/sales-summary'
8080
```
8181

0 commit comments

Comments
 (0)