You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.qmd
+14-5Lines changed: 14 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -16,12 +16,21 @@ Interested in deploying a Shiny application for R within Quarto without a server
16
16
17
17
For the demo, we're showing the source code used in Joe Cheng's [posit::conf(2023) demo](https://jcheng5.github.io/posit-conf-2023-shinylive/#/option-3-include-1) (Warning: Large file size, don't open on mobile!) [[Source Code](https://github.com/jcheng5/posit-conf-2023-shinylive/blob/d385ad18eb0d867f25cc4721d9e8c25aeb2dfb90/slides.qmd#L299)]
18
18
19
+
> [!NOTE]
20
+
>
21
+
> Please note that this guide is **not** affiliated with Posit, Quarto, Shiny,
22
+
> or Shinylive project. It is a community-driven tutorial to help you get started
23
+
> using Shinylive with Quarto.
19
24
20
25
### Updates
21
26
22
-
-**4/25/2025**
23
-
- We've switched the GitHub Pages to use GitHub Actions to
24
-
deploy the website instead of commiting into the GitHub Pages branch.
27
+
-**8/01/2024**
28
+
- We've also pinned the version of `shinylive` R package to v0.2.0 to
29
+
gain access to improvements regarding webR v0.4.0 and packaging `shiny`
30
+
packages with the deployment to improve reproducibility.
31
+
-**4/25/2024**
32
+
- We've switched how we used GitHub Pages to deploy Quarto website
33
+
to use GitHub Actions instead of committing into the GitHub Pages branch.
25
34
- We've also pinned the version of `shinylive` being used to v0.1.1 to ensure
26
35
consistency with the `quarto-ext/shinylive` Quarto extension.
27
36
-**10/26/2023**
@@ -379,7 +388,7 @@ jobs:
379
388
uses: r-lib/actions/setup-r-dependencies@v2
380
389
with:
381
390
packages:
382
-
cran::shinylive@0.1.1## Pin version to ensure consistency
391
+
cran::shinylive@0.2.0## Pin version to ensure consistency
383
392
any::knitr
384
393
any::rmarkdown
385
394
any::downlit
@@ -410,7 +419,7 @@ jobs:
410
419
```
411
420
412
421
:::{.callout-note}
413
-
We have pinned the version of `shinylive` package on CRAN to v0.1.1 to ensure
422
+
We have pinned the version of `shinylive` package on CRAN to v0.2.0 to ensure
414
423
consistency with the `quarto-ext/shinylive` Quarto extension.
0 commit comments