View source: R/legacy_github.R
legacy_github | R Documentation |
legacy_github(
repo,
branch = NULL,
token = NULL,
path = "",
host = "https://api.github.com",
name = "github",
cache = NULL,
...
)
board_register_github(
name = "github",
repo = NULL,
branch = NULL,
token = NULL,
path = "",
host = "https://api.github.com",
cache = NULL,
...
)
repo |
The GitHub repository formatted as 'owner/repo'. |
branch |
The branch to use to commit pins. Default, |
token |
GitHub personal access token. Uses gitcreds if not set. |
path |
The subdirectory in the repo where the pins will be stored. |
host |
The URL of the GitHub API. You'll need to customise
this to use GitHub enterprise, e.g. |
name |
An optional name used identify the board. This is no longer generally needed since you should be passing around an explicit board object. |
cache |
Cache path. Every board requires a local cache to avoid downloading files multiple times. The default stores in a standard cache location for your operating system, but you can override if needed. |
... |
Additional parameters required to initialize a particular board. |
To use a GitHub board, you'll need to set up authentication, following the instructions at https://happygitwithr.com/https-pat.html#https-pat.
A GitHub repo only supports files under 25MB in size (100MB in theory but there is additional overhead when using the GitHub API). To store large files, GitHub recommends storing them using GitHub Releases which support up to 2GB files, which is what pins uses. You don't need to do anything extra as this will happen behind the scenes, but don't be surprised if pins creates releases in your repo.
## Not run:
# the following example requires a GitHub API key
board <- legacy_github("owner/repo")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.