feat(storage): implement NAS content storage with read/write capabilities
Build and Push Reader API Image / docker (push) Successful in 1m3s

feat(docker): configure NAS content and EPUB source directories in docker-compose

feat(migrations): add tables for SourceAsset, ImportJob, ChapterContentRef, and AssetNovelMapping

feat(scripts): create backfill script for populating ChapterContentRef from MongoDB chapters
This commit is contained in:
2026-04-30 01:53:52 +07:00
parent 82f502acd2
commit 9a3bb4b6ce
10 changed files with 1297 additions and 18 deletions
+3
View File
@@ -20,6 +20,9 @@ class Settings(BaseSettings):
r2_secret_access_key: str = ""
r2_bucket_name: str = ""
r2_public_base_url: str = ""
nas_content_root: str = "./data/content"
epub_source_root: str = "./data/epub-source"
chapter_content_mode: str = "nas_first" # nas_first | mongo_first
deepseek_key: str = ""
deepseek_model: str = "deepseek-chat"