diff --git a/backend/app/core/config.py b/backend/app/core/config.py index e78e729..1e5397a 100644 --- a/backend/app/core/config.py +++ b/backend/app/core/config.py @@ -85,6 +85,7 @@ class Settings(BaseSettings): markdown_dir: str = Field(default="./storage/markdown") json_dir: str = Field(default="./storage/json") exports_dir: str = Field(default="./storage/exports") + result_dir: str = Field(default="./storage/results") # ===== PDF Generation Configuration ===== pandoc_path: str = Field(default="/opt/homebrew/bin/pandoc") @@ -133,6 +134,7 @@ class Settings(BaseSettings): self.markdown_dir, self.json_dir, self.exports_dir, + self.result_dir, self.paddleocr_model_dir, Path(self.log_file).parent, ]