Backups¶
Back up the full DATA_DIR. That directory contains the app state you need to
recover a Reclaimerr instance.
Backup Contents¶
database/reclaimerr.dbsecrets.envlogs/if you need local audit history- any custom static assets stored under the app data tree
Why Backups Matter¶
- The database stores settings, schedules, candidates, requests, and history.
secrets.envcontains the generated secrets used to decrypt sensitive data.- Without the full data directory, a restore may be incomplete or inconsistent.
Backup Routine¶
- Stop the app or take a filesystem snapshot before copying the database.
- Copy the entire data directory to a separate location.
- Keep at least one off-host copy.
- Test a restore on a non-production instance before relying on the process.
Restore Steps¶
- Stop Reclaimerr.
- Restore the saved
DATA_DIRcontents. - Make sure ownership and permissions match the runtime user.
- Start the app and verify
/api/versionand the UI load correctly. - Check settings, tasks, and history for expected state.