1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-03 04:55:23 +02:00
tldr/pages.nl/common/pio-run.md
2025-05-31 16:07:14 +02:00

744 B

pio run

Voer PlatformIO project doelen uit. Meer informatie: https://docs.platformio.org/en/latest/core/userguide/cmd_run.html.

  • Toon alle beschikbare project doelen:

pio run --list-targets

  • Toon alle beschikbare project doelen voor een specifieke omgeving:

pio run --list-targets {{[-e|--environment]}} {{omgeving}}

  • Voer alle doelen uit:

pio run

  • Voer alle doelen uit voor de gespecificeerde omgevingen:

pio run {{[-e|--environment]}} {{omgeving1}} {{[-e|--environment]}} {{omgeving2}}

  • Voer gespecificeerde doelen uit:

pio run {{[-t|--target]}} {{doel1}} {{[-t|--target]}} {{doel2}}

  • Voer de doelen uit van een specifiek configuratiebestand:

pio run {{[-c|--project-conf]}} {{pad/naar/platformio.ini}}