Prepare for migration

This commit is contained in:
Tiberiu Ichim 2026-02-05 16:42:47 +02:00
parent dedfdba39b
commit d442b46d7e
11 changed files with 451 additions and 0 deletions

39
scripts/Makefile Normal file
View file

@ -0,0 +1,39 @@
.PHONY: all library_folders library_items books feeds settings help
all: library_folders library_items books feeds settings
@echo "=== Complete dump complete ==="
library_folders:
@echo "Dumping library folders..."
@bash dump_library_folders.sh
library_items:
@echo "Dumping library items..."
@bash dump_library_items.sh
books:
@echo "Dumping books..."
@bash dump_books.sh
feeds:
@echo "Dumping feeds..."
@bash dump_feeds.sh
settings:
@echo "Dumping settings..."
@bash dump_settings.sh
summary:
@echo "Running full summary..."
@bash dump_all.sh
help:
@echo "Available targets:"
@echo " make all - Run all dump scripts"
@echo " make summary - Run the master summary script"
@echo " make library_folders - Dump libraryFolders table"
@echo " make library_items - Dump libraryItems table"
@echo " make books - Dump books table"
@echo " make feeds - Dump feeds table"
@echo " make settings - Dump settings table"
@echo " make help - Show this help message"