init
Scaffold a new Xorq project from a template.
Each template has a pinned default branch; pass --branch to check out a different branch or commit of the template repo.
Templates:
cached-fetcher—cached data-fetching workflows (the default)sklearn—ML workflows with scikit-learnpenguins—penguins dataset example pipeline
Usage
xorq init [OPTIONS]Options
| Option | Default | Description |
|---|---|---|
-p, --path |
./xorq-template |
Path to initialize the template. |
-t, --template |
cached-fetcher |
Template to use. |
-b, --branch |
none | Branch to use for the template. |
Examples
# Scaffold the default template
xorq init
# Scaffold the sklearn template in a custom directory
xorq init --template sklearn --path ./ml-project