-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path03_deploy.R
44 lines (35 loc) · 1.01 KB
/
03_deploy.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Deploy a Prod-Ready, Robust Shiny Application.
#
# 4. Test my package
devtools::test()
rhub::check_for_cran()
# 5. Deployment elements
## 5.1 If you want to deploy on RStudio related platforms
golem::add_rstudioconnect_file()
golem::add_shinyappsio_file()
golem::add_shinyserver_file()
## 5.2 If you want to deploy via a generic Dockerfile
# golem::add_dockerfile()
## 5.2 If you want to deploy to ShinyProxy
# golem::add_dockerfile_shinyproxy()
## 5.2 If you want to deploy to Heroku
# golem::add_dockerfile_heroku()
## The original code:
# library('rsconnect')
# load('.deploy_info.Rdata')
# rsconnect::setAccountInfo(name = deploy_info$name,
# token = deploy_info$token,
# secret = deploy_info$secret)
# options(repos = BiocManager::repositories())
# deployApp(
# appFiles = c(
# 'ui.R',
# 'server.R',
# 'global.R',
# dir('data', full.names = TRUE, recursive = TRUE)
# ),
# appName = 'spatialLIBD',
# account = 'jhubiostatistics',
# server = 'shinyapps.io'
# )
# Y