Create a backup of the SQLite database
Create and manage backups of the SQLite database.
make sqlite-backup
This creates a timestamped backup in ./backups/ directory:
budget_YYYYMMDD_HHMMSS.db./backups/budget_20260130_104530.dbmake sqlite-restore BACKUP_FILE=./backups/budget_20260130_104530.db
⚠️ WARNING: This will overwrite the current database at ./data/budget.db
All backups are stored in ./backups/ directory (created automatically).
./data/budget.db./data//db-shell - Open interactive SQLite shellmake sqlite-stats - View database statistics