{"id":19226831,"url":"https://github.com/lee88688/beryllium","last_synced_at":"2026-05-13T21:35:10.568Z","repository":{"id":102506200,"uuid":"310178828","full_name":"lee88688/beryllium","owner":"lee88688","description":"An epub reader that focuses on self-hosting and accessibility from anywhere.","archived":false,"fork":false,"pushed_at":"2024-03-12T08:41:19.000Z","size":180,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-23T10:26:42.593Z","etag":null,"topics":["asar","epub","epub-reader","nextjs"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lee88688.png","metadata":{"files":{"readme":"README.en.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-11-05T03:19:25.000Z","updated_at":"2024-01-02T07:06:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"dcde8aee-d4ff-43ee-a5bb-fc7ff598ef9d","html_url":"https://github.com/lee88688/beryllium","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/lee88688/beryllium","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lee88688%2Fberyllium","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lee88688%2Fberyllium/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lee88688%2Fberyllium/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lee88688%2Fberyllium/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lee88688","download_url":"https://codeload.github.com/lee88688/beryllium/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lee88688%2Fberyllium/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33001229,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"ssl_error","status_checked_at":"2026-05-13T13:14:51.610Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asar","epub","epub-reader","nextjs"],"created_at":"2024-11-09T15:20:28.318Z","updated_at":"2026-05-13T21:35:10.550Z","avatar_url":"https://github.com/lee88688.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Beryllium\n\nbuild epub reader for self hosted\n\n## features\n\n- easy to deploy, and you own all of your data\n- desktop and mobile support\n- dark mode\n- bookmark and highlight support\n- multi-user support\n\n## how to use\n\nif you want to build from source, see `how to develop` below.\n\ngenerally, you should use [docker image](https://hub.docker.com/r/lee88688/beryllium) directly. here is the example of docker compose config.\n\n```yaml\nversion: \"3\"\nservices:\n  beryllium:\n    image: lee88688/beryllium\n    ports:\n      - 3000:3000\n    environment:\n      # this env should be add, do not add quote to password string\n      # this is used for startup. when admin user is created, this is no longer need.\n      - ADMIN_USER_PASSWORD=some-password\n      # the default admin user name is admin,\n      # if you want to rename, please uncomment this line\n      # - ADMIN_USER_NAME=some-other-name\n    volumes:\n      - /path/to/data:/app/data\n```\n\n`/app/data/db.sqlite` stores the database, and `/app/data/asar` stores the upload epub files.\n\n### NOTE\n\nthe epub file uploaded from the user will be transformed into the asar file format. the asar file is just like tar file which combine the extracted files inside epub into one. so you should keep you epub files if you want to reuse them later. and there is a way to convert asar file to epub.\n\n## how to development\n\n- create `.env` file, like `.env.example`\n- prisma\n  - `npx prisma db push`, push schema to db\n  - `npx prisma db seed`, seed db\n\nThis is a [T3 Stack](https://create.t3.gg/) project bootstrapped with `create-t3-app`.\n\n## What's next? How do I make an app with this?\n\nWe try to keep this project as simple as possible, so you can start with just the scaffolding we set up for you, and add additional things later when they become necessary.\n\nIf you are not familiar with the different technologies used in this project, please refer to the respective docs. If you still are in the wind, please join our [Discord](https://t3.gg/discord) and ask for help.\n\n- [Next.js](https://nextjs.org)\n- [NextAuth.js](https://next-auth.js.org)\n- [Prisma](https://prisma.io)\n- [Tailwind CSS](https://tailwindcss.com)\n- [tRPC](https://trpc.io)\n\n## Learn More\n\nTo learn more about the [T3 Stack](https://create.t3.gg/), take a look at the following resources:\n\n- [Documentation](https://create.t3.gg/)\n- [Learn the T3 Stack](https://create.t3.gg/en/faq#what-learning-resources-are-currently-available) — Check out these awesome tutorials\n\nYou can check out the [create-t3-app GitHub repository](https://github.com/t3-oss/create-t3-app) — your feedback and contributions are welcome!\n\n## How do I deploy this?\n\nFollow our deployment guides for [Vercel](https://create.t3.gg/en/deployment/vercel), [Netlify](https://create.t3.gg/en/deployment/netlify) and [Docker](https://create.t3.gg/en/deployment/docker) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flee88688%2Fberyllium","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flee88688%2Fberyllium","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flee88688%2Fberyllium/lists"}