Skip to content

Commit 5668c6e

Browse files
committed
more posit connect
1 parent 16e6ae2 commit 5668c6e

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

R/publish.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
#' Publish Quarto Documents
33
#'
4-
#' Publish Quarto documents to RStudio Connect, ShinyApps, and RPubs
4+
#' Publish Quarto documents to Posit Connect, ShinyApps, and RPubs
55
#'
66
#' @inheritParams rsconnect::deployApp
77
#'

_pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ reference:
2525
- title: "Publishing"
2626
desc: >
2727
These functions enable you to publish static and interactive documents, websites, and books to
28-
[RStudio Connect](https://www.rstudio.com/products/connect/) and [shinyapps.io](https://www.shinyapps.io/):
28+
[Posit Connect](https://posit.co/products/enterprise/connect/) and [shinyapps.io](https://www.shinyapps.io/):
2929
contents:
3030
- quarto_publish_doc
3131

man/quarto_publish_doc.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/publishing.Rmd

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ vignette: >
99

1010
## Overview
1111

12-
The **quarto** package includes several functions that enable you to publish static and interactive documents, websites, and books to [RStudio Connect](https://www.rstudio.com/products/connect/) and [shinyapps.io](https://www.shinyapps.io/). When publishing to RStudio Connect, both simple content publishing (local rendering) as well as code publishing (rendering on Connect) are supported.
12+
The **quarto** package includes several functions that enable you to publish static and interactive documents, websites, and books to [Posit Connect](https://posit.co/products/enterprise/connect/) and [shinyapps.io](https://www.shinyapps.io/). When publishing to Posit Connect, both simple content publishing (local rendering) as well as code publishing (rendering on Connect) are supported.
1313

1414
## Accounts
1515

16-
Before publishing to RStudio Connect or shinyapps.io you should ensure that you have an account configured for publishing.
16+
Before publishing to Posit Connect or shinyapps.io you should ensure that you have an account configured for publishing.
1717

18-
For RStudio Connect, use the `rsconnect::connectUser()` function for the server you are publishing to. For example:
18+
For Posit Connect, use the `rsconnect::connectUser()` function for the server you are publishing to. For example:
1919

2020
```r
2121
rsconnect::connectUser(server = "rsc.example.com")
@@ -34,7 +34,7 @@ Note that you can copy and paste this code from the [Tokens](https://www.shinyap
3434

3535
## Documents
3636

37-
Use the `quarto_publish_doc()` function to publish a single document to RStudio Connect. Note that the very _first time_ that you publish you should specify both the `server` and `account` that you want to use for publishing. For example:
37+
Use the `quarto_publish_doc()` function to publish a single document to Posit Connect. Note that the very _first time_ that you publish you should specify both the `server` and `account` that you want to use for publishing. For example:
3838

3939
```r
4040
library(quarto)
@@ -57,7 +57,7 @@ quarto_publish_doc("document.qmd",
5757

5858
## Websites
5959

60-
Use the `quarto_publish_site()` function to publish a [website](https://quarto.org/docs/websites/) or [book](https://quarto.org/docs/books/) to RStudio Connect. Note that the very _first time_ that you publish you should specify both the `server` and `account` that you want to use for publishing. For example:
60+
Use the `quarto_publish_site()` function to publish a [website](https://quarto.org/docs/websites/) or [book](https://quarto.org/docs/books/) to Posit Connect. Note that the very _first time_ that you publish you should specify both the `server` and `account` that you want to use for publishing. For example:
6161

6262
```r
6363
library(quarto)
@@ -79,9 +79,9 @@ quarto_publish_site(server = "rsc.example.com", account = "njones",
7979

8080
## Interactive Docs
8181

82-
You can publish Shiny [interactive documents](https://quarto.org/docs/interactive/shiny/) to either RStudio Connect or shinyapps.io.
82+
You can publish Shiny [interactive documents](https://quarto.org/docs/interactive/shiny/) to either Posit Connect or shinyapps.io.
8383

84-
To publish to RStudio Connect, specify both the `server` and `account` that you want to use for publishing (this is required for the first publish only). For example:
84+
To publish to Posit Connect, specify both the `server` and `account` that you want to use for publishing (this is required for the first publish only). For example:
8585

8686
```r
8787
library(quarto)

0 commit comments

Comments
 (0)