shiny app 部署到远端
- shinyapp.io
- shiny-server
- runURL
今天先介绍 通过 runURL
的方式 shinyApp 的访问
0. 准备工作
配置 Github 私钥
安装 git, 右键,打开git,
输入代码,生成私钥
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
去截图的地方找到 id_rsa.pub,
复制全部内容,在 GitHub 的 SSH and GPG keys 页面,点击 New SSH key,粘贴你的公钥。
1. 将内容推送到Github进行托管
1.1 Github上新建一个仓库
在之前打开的git命令窗口输入以下命令:
# 初始化
git init
# 添加内容到本地仓库
git add .
# 提交到本地仓库
git commit -m "1st commit"
# 添加main 分支
git branch -M main
# 添加远程仓库地址
git remote add origin git@github.com:your_github_name/your_shiny_app.git
# 将本地仓库内容推送到远程仓库
git push origin main
2. 将应用转换为静态网站
shinylive 是一个可以将 Shiny 应用打包为静态文件的工具,这些文件可以在 GitHub Pages 上托管。首先,你需要安装 shinylive:
install.packages("shinylive")
然后,你可以使用以下命令将你的 Shiny 应用转换为静态文件:
shinylive::export(path = "path/to/your/app.R", output = "docs")
这个地方会非常慢
library(shinylive)
# 确保输出目录存在,如果不存在则创建
output_dir <- "path/to/your/app/docs"
if (!dir.exists(output_dir)) {
dir.create(output_dir, recursive = TRUE)
}
# 导出 Shiny 应用为静态文件
shinylive::export(appdir = "path/to/your/app", destdir = output_dir)
这里的 path 是你的 Shiny 应用 app.R 文件的路径,output 是你想要输出静态文件的目录。
3. 推送静态文件到 GitHub
git add docs/
git commit -m "Add Shiny app static files"
git push origin main
4. 配置 GitHub Pages
- 登录到你的 GitHub 账户。
- 导航到你的仓库。
- 在仓库的右上角,点击 "Settings"。
- 在左侧菜单中,点击 "Pages"。
- 在 "Source" 部分,选择 "Branch" 下拉菜单,然后选择 main 分支。
- 确保 "Folder" 字段设置为 /docs。
- 点击 "Save"。
GitHub 将开始构建你的站点,这可能需要几分钟的时间。
5. 获取你的应用的 URL
一旦 GitHub Pages 部署完成,你将看到一个 URL,你可以通过这个 URL 访问你的 Shiny 应用。
https://你的github用户名.github.io/你的仓库名
6. 使用 runUrl()
访问你的应用
在你的 R 会话中,使用 runUrl()
函数并提供你的应用的 URL:
library(shiny)
runUrl("https://你的github用户名.github.io/你的仓库名")
请确保将 "你的github用户名" 和 "你的仓库名" 替换为实际的 GitHub 用户名和仓库名。