Skip to main content
FlowDeck CLI can scaffold a new Xcode project from built-in templates.

Quick Start

# Create an iOS project in the current directory
flowdeck project create MyApp

# Create the project in a specific folder
flowdeck project create MyApp --path ~/Projects

# Create a multi-platform project
flowdeck project create MyApp --platforms ios,macos,visionos

# Set a custom bundle identifier
flowdeck project create MyApp --bundle-id com.acme.MyApp

# Customize deployment targets
flowdeck project create MyApp --ios-target 17.0 --macos-target 14.0

Next Steps

Once the project is created, run flowdeck init to save settings and start building without repeating flags. For full options, see Project Create Command.