Common files: settings.yaml
This file manages the automatic linking behavior of common files.
By default, all common files are linked into deployments created with mb.deploy
. To exclude some files from automatic linking add them or their directories to the skipAutomaticLinking
list.
The schema of the file is:
common/settings.yaml
schemaVersion: Literal[1]
skipAutomaticLinking: List[str]
Examples
Excluding utils.py
and everything in the checkpoints
directory:
common/settings.yaml
schemaVersion: 1
skipAutomaticLinking:
- utils.py
- checkpoints/*