Command Line Interface (CLI) Usage
PicoLimbo offers a flexible command line interface for running and configuring the server in standalone mode. This page covers all available CLI options and their usage.
Basic Usage
To start the server with default settings:
bash
pico_limboConfiguration Options
Custom Configuration File
Specify a custom configuration file path:
bash
pico_limbo --config /path/to/your/config.tomlLogging Options
Control the verbosity of server logs:
bash
# Detailed debug logging
pico_limbo -v
# Trace-level logging (most verbose)
pico_limbo -vvPort override
Override the port configured in the configuration file:
bash
pico_limbo --port 30066Advanced Options
Version Information
Display version information:
bash
pico_limbo --versionHide Banner
When PicoLimbo starts, a banner is displayed to inform users of the server version. You can hide this banner by passing the --skip-banner flag:
bash
pico_limbo --skip-bannerHelp
Show all available options:
bash
pico_limbo --help