genart.dev
CLI

genart eject

Extract .genart to a project directory

Extract a .genart file into a developer project directory. Creates separate files for the algorithm source, configuration, and metadata so you can work with standard development tools.

Usage

genart eject <file> [options]

Arguments

ArgumentRequiredDescription
<file>YesPath to a .genart sketch file

Options

FlagTypeDefaultDescription
-o, --outputpathOutput directory (defaults to sketch name)
-f, --forcebooleanOverwrite existing directory

Examples

Eject a sketch to a project directory:

genart eject my-sketch.genart

Eject to a specific directory:

genart eject my-sketch.genart -o projects/my-sketch

Overwrite an existing directory:

genart eject my-sketch.genart -o projects/my-sketch --force