File size: 761 Bytes
e232e39 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # =============================================================================
# jigsawR Development Entry Point
# =============================================================================
#
# Quick entry script to start the Shiny app with a clean workspace.
# Source this file to reload the package and launch the app.
#
# Usage (from RStudio or R console):
# source("inst/dev.R")
#
# IMPORTANT: Do not delete this file - it's used for daily development workflow.
# =============================================================================
# Clear workspace for clean testing
rm(list = ls(all.names = TRUE))
# Reload the package with latest changes
devtools::load_all()
# Launch the Shiny app
shiny::runApp("inst/shiny-app")
|