mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-03-01 05:29:41 +00:00
Prepare for migration
This commit is contained in:
parent
dedfdba39b
commit
d442b46d7e
11 changed files with 451 additions and 0 deletions
39
scripts/Makefile
Normal file
39
scripts/Makefile
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue