-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathdeploy_local.Rmd
More file actions
40 lines (30 loc) · 891 Bytes
/
deploy_local.Rmd
File metadata and controls
40 lines (30 loc) · 891 Bytes
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
---
title: "Local Deployment"
output: rmarkdown::html_vignette
vignette: >
%\VignetteIndexEntry{Local Deployment}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
## Overview
If you would like to perform a chart review from your local computer (i.e., not using a server), or want to explore the demo database follow these instructions for local deployment.
## Installation
First ensure you have the library `devtools` installed. If you do not, please install using:
```{r eval=FALSE}
install.packages('devtools')
```
Then install the latest development release of ReviewR using:
```{r eval=FALSE}
devtools::install_github('thewileylab/ReviewR')
```
## Usage
After installing ReviewR, the application can be launched by running:
```{r eval=FALSE}
ReviewR::run_app()
```