Documentation Index
Fetch the complete documentation index at: https://runpod-b18f5ded-promptless-update-uv-install-command.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Manage Flash applications. An app is the top-level container that groups your deployment environments, build artifacts, and configuration.
flash app <subcommand> [OPTIONS]
Subcommands
| Subcommand | Description |
|---|
list | Show all apps in your account |
create | Create a new app |
get | Show details of an app |
delete | Delete an app and all its resources |
app list
Show all Flash apps under your account.
โโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโ
โ Name โ ID โ Environments โ Builds โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ my-project โ app_abc123 โ dev, staging, prod โ build_1, build_2 โ
โ demo-api โ app_def456 โ production โ build_3 โ
โ ml-inference โ app_ghi789 โ dev, production โ build_4, build_5 โ
โโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโ
app create
Register a new Flash app on Runpodโs backend.
Arguments
Name for the new Flash app. Must be unique within your account.
What it creates
This command registers a Flash app in Runpodโs backendโessentially creating a namespace for your environments and builds. It does not:
- Create local files (use
flash init for that).
- Provision cloud resources (endpoints, volumes, etc.).
- Deploy any code.
The app is just a container that groups environments and builds together.
When to use
Most users donโt need to run flash app create explicitly. Apps are created automatically when you first run flash deploy. This command is primarily for CI/CD pipelines that need to pre-register apps before deployment.
app get
Get detailed information about a Flash app.
Arguments
Name of the Flash app to inspect.
โญโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ Flash App: my-project โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Name: my-project โ
โ ID: app_abc123 โ
โ Environments: 3 โ
โ Builds: 5 โ
โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
Environments
โโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโ
โ Name โ ID โ State โ Active Build โ Created โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ dev โ env_dev123 โ DEPLOYEDโ build_xyz789 โ 2024-01-15 10:30 โ
โ staging โ env_stg456 โ DEPLOYEDโ build_xyz789 โ 2024-01-16 14:20 โ
โ production โ env_prd789 โ DEPLOYEDโ build_abc123 โ 2024-01-20 09:15 โ
โโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโ
Builds
โโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโ
โ ID โ Status โ Created โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ build_abc123 โ COMPLETED โ 2024-01-20 09:00 โ
โ build_xyz789 โ COMPLETED โ 2024-01-18 15:45 โ
โ build_def456 โ COMPLETED โ 2024-01-15 11:20 โ
โโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโ
app delete
Delete a Flash app and all its associated resources.
Arguments
Name of the Flash app to delete.
Process
- Shows app details and resources to be deleted.
- Prompts for confirmation (required).
- Deletes all environments and their resources.
- Deletes all builds.
- Deletes the app.
This operation is irreversible. All environments, builds, endpoints, volumes, and configuration will be permanently deleted.
App hierarchy
See Apps and environments for the complete app organization structure.
Auto-detection
Flash CLI automatically detects the app name from your current directory:
cd /path/to/APP_NAME
flash deploy # Deploys to 'APP_NAME' app
flash env list # Lists 'APP_NAME' environments
Override with the --app flag:
flash deploy --app other-project
flash env list --app other-project