start_local: Start CEDARS Locally

Description Usage Arguments Value Examples

View source: R/accessory_functions.R

Description

Starts CEDARS locally from RStudio. This is a functional approach and is easier to implement than a full-fledged Shiny Server. Multiple users can access the same CEDARS project on the MongoDB server using separate local R sessions, however in that case MongoDB credentials would have to be shared to all. The best option for multi-user implementations is to use Shiny Server.

Usage

1
start_local(user, password, host, port, database)

Arguments

user

DB user name.

password

DB password.

host

Host server.

port

MongoDB port.

database

MongoDB database name.

Value

Launches the CEDARS Shiny app locally (on the desktop computer).

Examples

1
2
3
4
5
## Not run: 
start_local(user = 'John', password = 'db_password_1234', host = 'server1234', port = NA,
database = 'myDB')

## End(Not run)

CEDARS documentation built on Feb. 7, 2021, 5:06 p.m.