2026-01-29 14:58:54 +00:00
|
|
|
# Setup Examples
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Clone all repos
|
|
|
|
|
core setup
|
|
|
|
|
|
2026-01-29 16:26:27 +00:00
|
|
|
# Preview what would be cloned
|
|
|
|
|
core setup --dry-run
|
2026-01-29 14:58:54 +00:00
|
|
|
|
2026-01-29 16:26:27 +00:00
|
|
|
# Only foundation packages
|
|
|
|
|
core setup --only foundation
|
|
|
|
|
|
|
|
|
|
# Multiple types
|
|
|
|
|
core setup --only foundation,module
|
2026-01-29 14:58:54 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
|
|
`repos.yaml`:
|
|
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
|
org: host-uk
|
|
|
|
|
repos:
|
|
|
|
|
core-php:
|
|
|
|
|
type: package
|
|
|
|
|
core-tenant:
|
|
|
|
|
type: package
|
|
|
|
|
depends: [core-php]
|
|
|
|
|
core-admin:
|
|
|
|
|
type: package
|
|
|
|
|
depends: [core-php, core-tenant]
|
|
|
|
|
```
|