Initial commit
This commit is contained in:
commit
3cba772836
1341 changed files with 532924 additions and 0 deletions
13
AUDIT/setup_renv.R
Normal file
13
AUDIT/setup_renv.R
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Einmalig ausfuehren, bevor die App zum ersten Mal gestartet wird.
|
||||
# Initialisiert renv und installiert alle benoetigten Pakete.
|
||||
|
||||
if (!requireNamespace("renv", quietly = TRUE)) install.packages("renv")
|
||||
|
||||
renv::init()
|
||||
|
||||
pkgs = c("shiny", "dplyr", "ggplot2", "haven", "officer", "remotes", "formr", "RSQLite")
|
||||
install.packages(pkgs)
|
||||
|
||||
renv::snapshot()
|
||||
|
||||
message("Setup abgeschlossen. App starten mit: shiny::runApp('app.R')")
|
||||
Loading…
Add table
Add a link
Reference in a new issue