The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
In this repository the app in the inst
folder is a submodule
Module Repository: https://github.com/fernandoroa/invoice-public
install.packages("shinyInvoice")
devtools::install_github("fernandoroa/shinyInvoice",
ref = "main"
)
After installing the package, run the function shinyInvoice::runInvoice()
# go to your desired working folder in R
(setwd...)
# Having the package installed,
# copy the app to the working folder:
file.copy(system.file("shinyApps", "invoice_app", package = "shinyInvoice"), getwd(), recursive = TRUE)
# Read the main file
main <- readLines("invoice_app/app/main.R")
# Change string to use the local mode
main <- sub("local_safe_computer_mode <- FALSE", "local_safe_computer_mode <- TRUE", main)
writeLines(main, "invoice_app/app/main.R")
shiny::runApp("invoice_app/app.R")
This way when you save changes or do any download action your files will be (also) in the local folder:
invoice_app/app/tmp_dir/
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.