What this config affects
Checkpoint storage configuration controls:- whether Entire pushes checkpoint data when you run
git push - whether checkpoint data goes to the code repository or a separate repository
- whether checkpoint history stays local to your machine
- whether generated summaries are stored with checkpoint metadata
Configure checkpoint storage
- Source code repository (default)
- Separate checkpoint repo
- Local-only checkpoints
Store checkpoints with your code
By default, Entire stores checkpoint data in the same Git repository as your code on theentire/checkpoints/v1 branch.No configuration is required for the default setup.The effective default is:Effective default
Auto-generate checkpoint summaries
In addition to choosing where checkpoint data is pushed, you can configure Entire to add generated summaries to checkpoint metadata. Enable generated summaries at commit time withstrategy_options.summarize.enabled:
.entire/settings.json
Verify checkpoint storage
After changing checkpoint storage settings, run:strategy_options.push_sessionsstrategy_options.checkpoint_remotestrategy_options.summarize.enabled
- Source code repository: Entire pushes checkpoint data to the same remote as your source code.
- Separate checkpoint repo: Entire pushes checkpoint data to the configured
checkpoint_remote. - Local-only checkpoints: Entire does not push checkpoint data because
push_sessionsisfalse.