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
| Argument | Required | Description |
|---|---|---|
<file> | Yes | Path to a .genart sketch file |
Options
| Flag | Type | Default | Description |
|---|---|---|---|
-o, --output | path | Output directory (defaults to sketch name) | |
-f, --force | boolean | Overwrite existing directory |
Examples
Eject a sketch to a project directory:
genart eject my-sketch.genartEject to a specific directory:
genart eject my-sketch.genart -o projects/my-sketchOverwrite an existing directory:
genart eject my-sketch.genart -o projects/my-sketch --force