# BookLore ![GitHub release (latest by date)](https://img.shields.io/github/v/release/adityachandelgit/BookLore?color=green) ![License](https://img.shields.io/github/license/adityachandelgit/BookLore?color=orange) ![Stars](https://img.shields.io/github/stars/adityachandelgit/BookLore?style=social) ![Docker Pulls](https://img.shields.io/docker/pulls/booklore/booklore?color=2496ED) [![Join us on Discord](https://img.shields.io/badge/Chat-Discord-5865F2?logo=discord&style=flat)](https://discord.gg/Ee5hd458Uz) [![Open Collective backers and sponsors](https://img.shields.io/opencollective/all/booklore?label=Open%20Collective&logo=opencollective&color=7FADF2)](https://opencollective.com/booklore) BookLore is a self-hosted web app for organizing and managing your personal book collection. It provides an intuitive interface to browse, read, and track your progress across PDFs and eBooks. With robust metadata management, multi-user support, and a sleek, modern UI, BookLore makes it easy to build and explore your personal library. ![BookLore Demo](assets/demo.gif) ## ✨ Key Features - πŸ“š **Smart Organization**: Build your dream library with custom shelves, smart sorting, and powerful filters to find any book instantly - πŸ‘₯ **Multi-User Management**: Add users with granular permissions for library access and content control - πŸ“² **Kobo Integration**: Seamlessly sync your library with Kobo devices and convert EPUBs to KEPUB automatically - ✨ **Magic Shelves**: Create dynamic, rule-based smart collections that auto-update in real time - like smart playlists for your books - 🧠 **Auto Metadata**: Fetch rich book details from Goodreads, Amazon, Google Books, and Hardcover - πŸ“€ **BookDrop Import**: Drop files in a folder for automatic detection and bulk import - 🌐 **OPDS Support**: Connect reading apps directly to your library for wireless downloads - πŸ”‘ **Flexible Authentication**: Choose between local accounts or external OIDC providers (Authentik, Pocket ID) - πŸ”„ **KOReader Sync**: Track reading progress across KOReader and BookLore - πŸ“§ **One-Click Sharing**: Send books via email directly from the interface - πŸ” **Private Notes**: Save personal reading notes visible only to you - 🌍 **Community Reviews**: Auto-fetch public reviews to enrich your library - πŸ“– **Built-in Reader**: Read PDFs, EPUBs, and comics with customizable themes - πŸ“± **Mobile Ready**: Fully responsive design optimized for all devices ## πŸ’– Support the Project If you find **BookLore** helpful, please consider supporting its development: - ⭐ Star this repository to show your appreciation and help others discover it. - πŸ’Έ Contribute via [Open Collective](https://opencollective.com/booklore) to help fund development, hosting, and testing costs. > πŸ“Œ Currently raising funds for a **Kobo device** to implement and test native Kobo sync support. > πŸ’‘ [Support the Kobo Sync Bounty β†’](https://opencollective.com/booklore/projects/kobo-device-for-testing) ## 🌐 Live Demo: Explore BookLore in Action Evaluate BookLore’s features and user experience in a live environment: **Demo Access:** - 🌐 **URL:** [demo.booklore.dev](https://demo.booklore.dev) - πŸ‘€ **Username:** `booklore` - πŸ”‘ **Password:** `9HC20PGGfitvWaZ1` > ⚠️ **Note:** > The demo account has standard user permissions only. > - **Admin features** (user management, library setup, advanced configuration) are not available in this demo. > - To explore all capabilities, including administration and multi-user management, please deploy your own instance as described below. ## πŸš€ Getting Started with BookLore Kick off your BookLore journey with our official documentation and helpful video guides. πŸ“˜ [BookLore Documentation: Getting Started](https://booklore-app.github.io/booklore-docs/docs/getting-started/) Our up-to-date docs walk you through installation, setup, configuration, and key features, everything you need to get up and running smoothly. > πŸ’‘ **Want to improve the documentation?** > You can update the docs at [booklore-app/booklore-docs](https://github.com/booklore-app/booklore-docs) and create a pull request to contribute your changes! ## 🐳 Deploy with Docker You can quickly set up and run BookLore using Docker. ### 1️⃣ Install Docker & Docker Compose Ensure you have [Docker](https://docs.docker.com/get-docker/) and [Docker Compose](https://docs.docker.com/compose/install/) installed. **Image Repositories:** - Docker Hub: `https://hub.docker.com/r/booklore/booklore` - GitHub Container Registry: `https://ghcr.io/booklore-app/booklore` > **Note:** Legacy images under `https://ghcr.io/adityachandelgit/booklore-app` will remain available but will not receive new updates. ### 2️⃣ Set Up Your docker-compose.yml Configuration **Step 1: Create a `.env` file** in the same directory as your `docker-compose.yml`: ```ini # BookLore Application Settings APP_USER_ID=0 APP_GROUP_ID=0 TZ=Etc/UTC BOOKLORE_PORT=6060 # Database Connection (BookLore) DATABASE_URL=jdbc:mariadb://mariadb:3306/booklore DB_USER=booklore DB_PASSWORD=ChangeMe_BookLoreApp_2025! # MariaDB Container Settings DB_USER_ID=1000 DB_GROUP_ID=1000 MYSQL_ROOT_PASSWORD=ChangeMe_MariaDBRoot_2025! MYSQL_DATABASE=booklore ``` **Step 2: Create a `docker-compose.yml` file** that references the `.env` variables: ```yaml services: booklore: image: booklore/booklore:latest # Alternative: Use GitHub Container Registry # image: ghcr.io/booklore-app/booklore:latest container_name: booklore environment: - USER_ID=${APP_USER_ID} - GROUP_ID=${APP_GROUP_ID} - TZ=${TZ} - DATABASE_URL=${DATABASE_URL} - DATABASE_USERNAME=${DB_USER} - DATABASE_PASSWORD=${DB_PASSWORD} - BOOKLORE_PORT=${BOOKLORE_PORT} depends_on: mariadb: condition: service_healthy ports: - "${BOOKLORE_PORT}:${BOOKLORE_PORT}" volumes: - ./data:/app/data - ./books:/books - ./bookdrop:/bookdrop restart: unless-stopped mariadb: image: lscr.io/linuxserver/mariadb:11.4.5 container_name: mariadb environment: - PUID=${DB_USER_ID} - PGID=${DB_GROUP_ID} - TZ=${TZ} - MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD} - MYSQL_DATABASE=${MYSQL_DATABASE} - MYSQL_USER=${DB_USER} - MYSQL_PASSWORD=${DB_PASSWORD} volumes: - ./mariadb/config:/config restart: unless-stopped healthcheck: test: [ "CMD", "mariadb-admin", "ping", "-h", "localhost" ] interval: 5s timeout: 5s retries: 10 ``` ### 3️⃣ Start the Containers Run the following command to start the services: ```ini docker compose up -d ``` ### 4️⃣ Access BookLore Once the containers are up, access BookLore in your browser at: ```ini http://localhost:6060 ``` ## πŸ“₯ Bookdrop Folder: Auto-Import Files BookLore now supports a **Bookdrop folder**, a special directory where you can drop your book files (`.pdf`, `.epub`, `.cbz`, etc.), and BookLore will automatically detect, process, and prepare them for import. This makes it easy to bulk add new books without manually uploading each one. ### πŸ” How It Works 1. **File Watcher:** A background process continuously monitors the Bookdrop folder. 2. **File Detection:** When new files are added, BookLore automatically reads them and extracts basic metadata (title, author, etc.) from filenames or embedded data. 3. **Optional Metadata Fetching:** If enabled, BookLore can query metadata sources like Google Books or Open Library to enrich the book information. 4. **Review & Finalize:** You can then review the detected books in the Bookdrop UI, edit metadata if needed, and assign each book to a library and folder structure before finalizing the import. ### βš™οΈ Configuration (Docker Setup) To enable the Bookdrop feature in Docker: ```yaml services: booklore: ... volumes: - ./data:/app/data - ./books:/books - ./bookdrop:/bookdrop # πŸ‘ˆ Bookdrop directory ``` ## 🀝 Community & Support - 🐞 Found a bug? [Open an issue](https://github.com/adityachandelgit/BookLore/issues) - ✨ Want to contribute? [Check out CONTRIBUTING.md](https://github.com/adityachandelgit/BookLore/blob/master/CONTRIBUTING.md) - πŸ’¬ **Join our Discord**: [Click here to chat with the community](https://discord.gg/Ee5hd458Uz) ## πŸ“Š Repository Activity ![Alt](https://repobeats.axiom.co/api/embed/44a04220bfc5136e7064181feb07d5bf0e59e27e.svg "Repobeats analytics image") ## ⭐ Star History Star History Chart ## πŸ‘¨β€πŸ’» Contributors & Developers Thanks to all the amazing people who contribute to Booklore. [![Contributors List](https://contrib.rocks/image?repo=adityachandelgit/BookLore)](https://github.com/adityachandelgit/BookLore/graphs/contributors) ## βš–οΈ License * [GNU GPL v3](http://www.gnu.org/licenses/gpl.html) * Copyright 2024-2025