Developer Documentation

Create an App

Creates a new app with the specified name and options. If you don’t provide a name, the CLI will prompt you to enter one.

Info

There are no costs involved in creating an app. You only pay for the resources you use (like servers, images, etc.).

Usage

odin apps create [--name=APP_NAME]

Examples

Create a new app with the name my-app:

odin apps create --name="my-app"

Flags

  • --name=<string>:
    The name of the app to create.

Global Flags

The following flags can be used with any ODIN CLI command:

  • --api-key=<string>
    The API key to use for authentication. If omitted, the CLI will use the api-key stored in the configuration file on your system. Use odin login to store the API key for subsequent commands.

  • --app-id=<string>
    The ID of the app to use for the command. If omitted, the CLI will use the currently selected app. Use odin apps select to select an app interactively.

  • --format=<string>
    The output format to use for the command. Supported formats are json, value, flattened and table. If omitted, the CLI will use the default format specified in the configuration file. Learn more about output formatting.

  • --force
    Forces the command to execute without prompting for confirmation. Use with caution.

  • --quiet
    Suppresses all informational output except for errors. Useful for scripting and automation.