| Crates.io | omry-service |
| lib.rs | omry-service |
| version | 0.17.0 |
| created_at | 2025-10-27 19:19:09.890435+00 |
| updated_at | 2026-01-13 16:23:46.763193+00 |
| description | RPC definitions for server and client applications using the Omry project. |
| homepage | https://sr.ht/~anya_hope/omry/ |
| repository | https://git.sr.ht/~anya_hope/omry |
| max_upload_size | |
| id | 1903615 |
| size | 75,570 |
Pronounced like 'omni' (but with an 'r' in place of an 'n').
Note: My initial working name for this project was 'flora', which you may still find throughout the code and documentation.
Omry is still in early development. Feel free to try it out, but keep in mind that there could be rough edges, or breaking changes down the line. Feedback is welcome!
Omry is a searchable, offline archive of web pages. You can think of it as your personal library, where each "book" is a web page you saved, so you could come back to it.
Omry stores a copy of the web page, which allows you to search within the content of the page (even if you forgot its original website or title), and lets you see that page even if the original is gone due to link rot. If you've ever been in a situation where you knew there was that one article, blog post, or online discussion that you bookmarked, but had no idea how to find it now, then Omry is for you.
For more details, please see the extended project description.
Omry is free and open source (see LICENSE). This means you can take the code and host it anywhere, including your own computer.
Please note that the documentation, like the rest of the project, is still in-progress.
Changes introduced in new versions are documented in the changelog.
Note for WSL: I recommend using Docker Desktop with WSL integration, as opposed to running Docker itself inside WSL. Running Omry from Docker installed in your WSL distro could result in problems communicating with Omry services from your Windows host, e.g. when saving pages from your browser.
At the moment, the easiest way to start the backend stack is to run:
docker compose up
This will get all the necessary components of the backend (server, database, search) and start them. The logs will show "Omry is ready" when the backend is ready for the client application to connect to.
To run Omry without Docker Compose, see "Additional options for running Omry on your system."
To use Omry, you need a client application. Currently, the most complete client is omry-cli, an in-progress application that lets you interact with Omry's backend via the terminal. Eventually, my plan is to have a web-based client.
You can save pages to Omry right from your browser. Please see the instructions here:
Note: On Android, adding pages should be similar to how it works on the desktop. However, I don't currently have an Android device, and haven't been able to verify it myself.
You can use the following mailing lists to stay up to date and give feedback:
Stay up to date with release announcements (low volume): https://lists.sr.ht/~anya_hope/omry-announce
Discuss using Omry, and report problems: https://lists.sr.ht/~anya_hope/omry-discuss
This is useful if you don't want to use Docker. You will need to run Typesense separately (on the same machine or elsewhere), and set the necessary environment variables for Omry to connect to it.
cargo install --path server
This will install the binary omry-server to your system. To run it, use
FLORA_DATABASE_URL=omry.db FLORA_TYPESENSE_API_KEY=flora FLORA_TYPESENSE_URL=http://localhost:8108 omry-server
You may need to change the above values to fit your environment.
This is only useful if you don't want to use Docker Compose. As with the manual installation, you'll need to run Typesense separately, and pass the right environment variables to the omry-server container when you run it.
docker build -t omry-server:latest .
cargo install --locked bacondocker compose up --build
If you are using an Aarch64 (ARM64) system with 16KB page sizes on Linux (such as Asahi on Macs with Apple Silicon), you need to use a different version of the Typesense Docker image. You can do so by setting this environment variable:
export OMRY_TYPESENSE_TAG_SUFFIX="-arm64-lg-page16"
This will use a build of Typesense which supports 16KB page sizes. For details, see this GitHub issue.
The Omry project uses Testcontainers for integration tests, which is configured to pull images from the local container registry.
You can create the local registry, and push the omry-server and omry-import-server images
to it by running the following script (assuming you are in the repo root):
elvish scripts/push_omry_local.elv
Then:
cargo nextest run
To run tests for individual crates that make up the omry workspace, simply navigate to that directory, and run tests from there.
For example:
cd db
cargo nextest r
This will only run the tests in the omry-db crate.
Assuming you have installed bacon, as mentioned in "Prerequisites":
bacon clippy-pedantic-all
bacon nextest --all-features -- --all-targets
Omry, a searchable archive of web pages. Copyright (C) 2025 Anna 'anya' Hope
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.
Typesense® is a registered trademark of Typesense, Inc.
Made with love and other human emotions.