38 lines
742 B
YAML
38 lines
742 B
YAML
# Example KiBot config file
|
|
kibot:
|
|
version: 1
|
|
|
|
variants:
|
|
- name: 'production'
|
|
comment: 'Production variant'
|
|
type: kibom
|
|
file_id: '_(production)'
|
|
variant: production
|
|
|
|
- name: 'test'
|
|
comment: 'Test variant'
|
|
type: kibom
|
|
file_id: '_(test)'
|
|
variant: test
|
|
pre_transform: '_var_rename'
|
|
|
|
outputs:
|
|
- name: 'bom_internal'
|
|
comment: "Bill of Materials in CSV format"
|
|
type: bom
|
|
dir: BoM
|
|
|
|
- name: 'bom_internal_production'
|
|
comment: "Bill of Materials in CSV format for production"
|
|
type: bom
|
|
dir: BoM
|
|
options:
|
|
variant: production
|
|
|
|
- name: 'bom_internal_test'
|
|
comment: "Bill of Materials in CSV format for test"
|
|
type: bom
|
|
dir: BoM
|
|
options:
|
|
variant: test
|