Skip to main content
List available build configurations (e.g., Debug, Release) in a workspace or project.
# List configurations
flowdeck project configs -w App.xcworkspace

# List as JSON
flowdeck project configs -w App.xcworkspace --json

Options

OptionShortDescription
--workspace <path>-wPath to workspace (.xcworkspace) or project (.xcodeproj) (required)
--json-jOutput as JSON

Output

Human-readable output:
Build Configurations:
  • Debug
  • Release
  • Staging

JSON Output

{
  "configurations": ["Debug", "Release", "Staging"]
}

Use Cases

List Available Configurations

# See what configurations are available
flowdeck project configs -w MyApp.xcworkspace

Use in Build Commands

# Build with specific configuration
flowdeck build -w MyApp.xcworkspace -s MyApp -C Release