Assignment 3 GEOM90007 Information Visualisation at the University of Melbourne.
Live demo is available at:
https://johnsonzhou.shinyapps.io/parkit/
This app uses CSS style that are not supported by the built-in browser of RStudio. For best experience, please use an external (modern) browser.
source("./R/libraries.R")
# At the root project directory
shiny::runApp()
shiny::runApp(launch.browser = FALSE)
root
|- data: data sources for the dash board
|- doc: documentation
|- R: supporting R scripts for the app
|- src: supporting non-R source files and assets
|- www: production non-R files and assets for use by the app
Non-R source files are built using webpack
,
transforming from ./src
to ./www
.
# install node module
npm install
# build
npm run build
Use script deploy.R
and ensuring to change the following parameters:
deploy <- list(
"account" = "CHANGEME",
"token" = "CHANGEME",
"secret" = "CHANGEME",
"appName" = "parkit"
)