start_local: Start CEDARS Locally

View source: R/accessory_functions.R

start_localR Documentation

Start CEDARS Locally

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

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

Arguments

user

DB user name.

password

DB password.

host

Host server.

replica_set

MongoDB replica set, if indicated.

port

MongoDB port.

database

MongoDB database name.

Value

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

Examples

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

## End(Not run)

simon-hans/CEDARS documentation built on Feb. 14, 2024, 3:16 a.m.