Monorepo Support
If you are using a monorepo development strategy in GitHub, an additional configuration file is required in order to enable dependency scanning.
To enable monorepo support—
- Create a folder titled
.jit
in the root directory of your monorepo. - Create a file within this folder titled
config.yml
. - Edit
config.yml
to define folders you want Jit to monitor as separate projects that each require independent scans. Glob patterns are supported. For information on configuring folder exclusion viaconfig.yml
, see Folder Exclusion.
folders:
- path: /project1
- path: /project2
Updated 12 days ago