Description Usage Arguments Details Examples
Launch the WorkPackages Shiny app
1 2 3 4 5 6 7 8 9 |
connectionDetails |
An object of type |
databaseSchema |
The schema on the database server where the results have been uploaded. |
dataFile |
(Optional) The name of the .RData file with results. It is commonly known as the Premerged file. |
runOverNetwork |
(optional) Do you want the app to run over your network? |
port |
(optional) Only used if |
launch.browser |
Should the app be launched in your default browser, or in a Shiny window. Note: copying to clipboard will not work in a Shiny window. |
Launches a Shiny app that allows the user to explore WorkPackages
1 2 3 4 5 6 7 8 9 10 | connectionDetails <- DatabaseConnector::createConnectionDetails(
dbms = "postgresql",
server = paste(keyring::key_get("workPackagesServer"),
keyring::key_get("workPackagesDatabase"),
sep = "/"),
user = keyring::key_get("workPackagesReadOnlyUser"),
password = keyring::key_get("workPackagesReadOnlyPassword"))
launchWorkPackageExplorer(connectionDetails = connectionDetails,
databaseSchema = paste0(keyring::key_get("workPackagesDatabase"), ".work_packages"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.