Forrest logo
back to the pio tool

pio-home:tldr:b77fc

pio-home: Use a specific HTTP port (defaults to 8008).
$ pio home --port ${port}
try on your machine

This command is used to launch the PlatformIO Home CLI (Command Line Interface) and specify the port on which it should run.

  • pio home: This is the main command to run the PlatformIO Home CLI. It starts the CLI interface, allowing you to interact with PlatformIO through the command line.
  • --port: This is a flag or parameter used to specify the port number for the PlatformIO Home server to run on.
  • ${port}: This is a placeholder or variable that should be replaced with the actual port number when executing the command. The variable name "port" is arbitrary and should be substituted with the desired port number.

For example, if you want to run the PlatformIO Home CLI on port 8000, you would replace ${port} with 8000, resulting in the command pio home --port 8000.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the pio tool