Each command directory now has both index.md (reference) and example.md (usage examples and configuration samples). Also adds exception for docs/cmd/build in .gitignore. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
363 B
Markdown
29 lines
363 B
Markdown
# Setup Examples
|
|
|
|
```bash
|
|
# Clone all repos
|
|
core setup
|
|
|
|
# Specific directory
|
|
core setup --dir ~/Code/host-uk
|
|
|
|
# Use SSH
|
|
core setup --ssh
|
|
```
|
|
|
|
## 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]
|
|
```
|