Skip to content

ginko create

Terminal window
ginko create <project-name> [options]

Creates a new project directory with ginko pre-configured. Includes project scaffolding based on the selected template.

FlagDescription
-t, --template <template>Project template: basic, react, node, library
-d, --description <description>Project description
--non-interactiveSkip prompts (for CI/automation)
Terminal window
# Create with interactive prompts
ginko create my-app
# Create with template
ginko create my-api --template node
# CI/automation mode
ginko create my-lib --template library --description "Shared utilities" --non-interactive