Skip to content

Commit

Permalink
Add r-universe install script and badge
Browse files Browse the repository at this point in the history
  • Loading branch information
psolymos committed Dec 13, 2021
1 parent d26e6ed commit 791926b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ knitr::opts_chunk$set(
```

# clickrup <img src="https://raw.githubusercontent.com/psolymos/clickrup/master/inst/images/clickrup.jpg" align="right" style="padding-left:10px;background-color:white;" width="200px" />

[![clickrup status badge](https://psolymos.r-universe.dev/badges/clickrup)](https://psolymos.r-universe.dev)

> Interacting with the ClickUp v2 API from R
[ClickUp](https://clickup.com/?noRedirect=true) is a cloud-based collaboration and project management tool.
Expand All @@ -26,7 +29,14 @@ See the [roadmap](https://github.com/psolymos/clickrup/issues/1) for what is cur
Install the {clickrup} package:

```{r eval=FALSE}
## using remotes
remotes::install_github("psolymos/clickrup")
## with r-universe
options(repos = c(
psolymos = "https://psolymos.r-universe.dev",
CRAN = "https://cloud.r-project.org"))
install.packages('clickrup')
```

Follow this [tutorial](https://docs.clickup.com/en/articles/1367130-getting-started-with-the-clickup-api):
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# clickrup <img src="https://raw.githubusercontent.com/psolymos/clickrup/master/inst/images/clickrup.jpg" align="right" style="padding-left:10px;background-color:white;" width="200px" />

[![clickrup status badge](https://psolymos.r-universe.dev/badges/clickrup)](https://psolymos.r-universe.dev)

> Interacting with the ClickUp v2 API from R
[ClickUp](https://clickup.com/?noRedirect=true) is a cloud-based
Expand All @@ -16,7 +18,14 @@ currently included in the package.
Install the {clickrup} package:

``` r
## using remotes
remotes::install_github("psolymos/clickrup")

## with r-universe
options(repos = c(
psolymos = "https://psolymos.r-universe.dev",
CRAN = "https://cloud.r-project.org"))
install.packages('clickrup')
```

Follow this
Expand Down

0 comments on commit 791926b

Please sign in to comment.