Crate up_rs

Source
Expand description

The up CLI command.

Modules§

env
Builds environment variable sets for command execution.
errors
Overall errors thrown by the up crate.
exec
Wrappers around executing commands.
opts
CLI options passed to up commands.
tasks
Logic for dealing with tasks executed by up.
utils
General-use utility functions.

Macros§

cmd
Copy of the duct::cmd! macro that ensures we’re logging the command we’re running at the ‘info’ level (logged by default).
cmd_debug
Copy of the duct::cmd! macro that ensures we’re logging the command we’re running at the debug level (not logged by default).
cmd_debug_if_wet
Copy of the duct::cmd! macro that skips running the command if the dry_run boolean is true. Logs the command to be run at the Debug level.
cmd_if_wet
Copy of the duct::cmd! macro that skips running the command if the dry_run boolean is true. Logs the command to be run at the Info level.
log
Equivalent of ::log::log!() for the tracing crate.

Constants§

UP_BUNDLE_ID
The unique identifier of the up application on the system.

Functions§

run
Run up with provided Opts struct.