github.com/soulteary/pocket-bookcase@v0.0.0-20240428065142-0b5a9a0fc98a/docs/Storage.md (about)

     1  # Storage
     2  
     3  Shiori requires a folder to store several pieces of data, such as the bookmark archives, thumbnails, ebooks, and others. If the database engine used is sqlite, then the database file will also be stored in this folder.
     4  
     5  You can specify the storage folder by using `--storage-dir` or `--portable` flags when running Shiori.
     6  
     7  If none specified, Shiori will try to find the correct app folder for your OS.
     8  
     9  For example:
    10  - In Windows, Shiori will use `%APPDATA%`.
    11  - In Linux, it will use `$XDG_CONFIG_HOME` or `$HOME/.local/share` if `$XDG_CONFIG_HOME` is not set.
    12  - In macOS, it will use `$HOME/Library/Application Support`.
    13  
    14  > For more and up to date information about app folder discovery check [muesli/go-app-paths](https://github.com/muesli/go-app-paths)