check_interactiveR Documentation

Loads the local package source, enables the documented warning and debug options used during runtime review, and starts the representative Shiny app used for the manual visual-review gate before strict finalize.

Description

CLI entry point: './tools/check_interactive.R –help'

Usage

check_interactive(root = ".", host = "127.0.0.1", port = NULL)

Arguments

root

Repository root directory.

host

Host passed to 'shiny::runApp()'.

port

Optional integer port passed to 'shiny::runApp()'. When 'NULL', Shiny uses its usual default port selection.

Details

Run this tool from the repository root, open the printed local URL in a browser, exercise each representative section, and stop the app with 'Ctrl-C' when the visual review is complete.

Value

Invisibly returns the result of 'shiny::runApp()'.

Examples

## Not run: 
check_interactive()
check_interactive(port = 7448L)

## End(Not run)