Forrest logo
back to the balena tool

balena:tldr:63d49

balena: Create a balenaCloud or openBalena application.
$ balena app create ${app_name}
try on your machine

The command "balena app create ${app_name}" is used to create a new application in the Balena platform.

Here's how the different parts of the command work:

  • "balena" is the command-line interface (CLI) tool for Balena.
  • "app" is the command that deals with application-related actions.
  • "create" is the sub-command used for creating a new application.
  • "${app_name}" is a placeholder for the actual name you want to give to your application.

To create a new application, you would replace "${app_name}" with the desired name for your application. For example, if you want to create an application named "myapp", you would run the command "balena app create myapp".

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 balena tool