pub fn display_getting_started()Expand description
Display helpful information to the user when no command is provided
This function shows getting started information, usage examples, and helpful links when the user runs the application without any subcommands. It provides a friendly introduction to the application and guides users toward productive next steps.
§Output
Prints directly to stdout with formatted, user-friendly content including:
- Application overview and purpose
- Getting started instructions
- Testing guidance
- Documentation references
- Next steps for users
§Example
use torrust_tracker_deployer_lib::bootstrap::help;
// Display help when user runs app without arguments
help::display_getting_started();