50 lines
871 B
YAML
50 lines
871 B
YAML
# Example KiBot config file
|
|
kibot:
|
|
version: 1
|
|
|
|
global:
|
|
remove_solder_mask_for_dnp: true
|
|
|
|
variants:
|
|
- name: 'production'
|
|
comment: 'Production variant'
|
|
type: ibom
|
|
file_id: '_(production)'
|
|
variants_blacklist: T2
|
|
|
|
- name: 'test'
|
|
comment: 'Test variant'
|
|
type: ibom
|
|
file_id: '_(test)'
|
|
variants_blacklist: T1
|
|
|
|
- name: 'default'
|
|
comment: 'Default variant'
|
|
type: ibom
|
|
variants_blacklist: T2,T3
|
|
|
|
outputs:
|
|
- name: 'gerber'
|
|
comment: "Gerber"
|
|
type: gerber
|
|
dir: gerber
|
|
layers: all
|
|
options:
|
|
variant: default
|
|
|
|
- name: 'gerber_production'
|
|
comment: "Gerber for production"
|
|
type: gerber
|
|
dir: production
|
|
layers: all
|
|
options:
|
|
variant: production
|
|
|
|
- name: 'gerber_test'
|
|
comment: "Gerber for test"
|
|
type: gerber
|
|
dir: test
|
|
layers: all
|
|
options:
|
|
variant: test
|