.bolt/ folder. Each team or domain can own its own YAML. Paradime auto-discovers every .yaml/.yml file under .bolt/ and merges their schedules: lists into a single deployment — there is no entry-point file and no import declarations to maintain.
The legacy flat
paradime_schedules.yml file is still fully supported, and the two layouts can coexist — see Coexistence with the flat file below.File Location and Structure
Place a.bolt/ folder at the root of your dbt project, next to dbt_project.yml. Any .yaml or .yml file inside (at any depth) is treated as a schedule file.
main.yaml if you like, but it’s purely a naming convention — Paradime treats every YAML file the same way.
File format
Each YAML file uses the same configuration format asparadime_schedules.yml.
schedules:is the list of schedule definitions for that file. Each schedule’snamemust be unique across the entire.bolt/folder andparadime_schedules.ymlcombined.
Processing order and rules
Files that fail validation surface errors prefixed with the originating file path, so triage is fast:
Coexistence with paradime_schedules.yml
If both .bolt/ and paradime_schedules.yml exist, Paradime merges all schedules from both sources. This makes it safe to adopt the modular layout gradually — you can move schedules out of the flat file in batches without breaking your deployment, and delete paradime_schedules.yml once it’s empty.
The only failure case is a schedule name collision between the two sources, which fails the deploy with a message pointing at both file paths.
Related pages
- Editing YAML schedules from the Paradime UI — the in-app YAML editor works with both layouts.
- Deploying YAML schedules from a custom branch — override the default branch that Paradime reads schedules from.
Example: multi-team layout
Limitations
- Only
.yamland.ymlfiles are supported. There is no templating or variable interpolation between files. - Schedules cannot be split across files — each schedule is a single object in a single file. You can’t put a schedule’s
notifications:block in a different file from its definition.