# Dependency management with renv
renv::init()
renv::snapshot()
# Test application locally
shiny::runApp()
# Check for common issues
rsconnect::lint(".")
# Optimize data files
saveRDS(data, "data/optimized.rds", compress = TRUE)
# Create .dockerignore / deployment exclusions
# .git, .Rproj.user, *.log, temp filesCritical: Always test locally first and lock package versions with renv
