diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-04-05 18:09:53 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-04-05 18:10:23 +0000 |
| commit | 27324a963120fe7a6aeff7cfbe358db5b3fafe7a (patch) | |
| tree | 4b3a8ef7f17ecc7c8f796af79e93429b0c587930 /docs/versioned_docs/version-v0.23.1/02-Installation/03-archlinux.md | |
| parent | 8a2b890256d89487343f3772e76b79e0bbcb0c2c (diff) | |
| download | karakeep-27324a963120fe7a6aeff7cfbe358db5b3fafe7a.tar.zst | |
docs: Release the 0.23.1 docs
Diffstat (limited to 'docs/versioned_docs/version-v0.23.1/02-Installation/03-archlinux.md')
| -rw-r--r-- | docs/versioned_docs/version-v0.23.1/02-Installation/03-archlinux.md | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/docs/versioned_docs/version-v0.23.1/02-Installation/03-archlinux.md b/docs/versioned_docs/version-v0.23.1/02-Installation/03-archlinux.md new file mode 100644 index 00000000..37ada2fa --- /dev/null +++ b/docs/versioned_docs/version-v0.23.1/02-Installation/03-archlinux.md @@ -0,0 +1,48 @@ +# Arch Linux + +## Installation + +> [Hoarder on AUR](https://aur.archlinux.org/packages/hoarder) is not maintained by the hoarder official. + +1. Install hoarder + + ```shell + paru -S hoarder + ``` + +2. (**Optional**) Install optional dependencies + + ```shell + # meilisearch: for full text search + paru -S meilisearch + + # ollama: for automatic tagging + paru -S ollama + + # hoarder-cli: hoarder cli tool + paru -S hoarder-cli + ``` + + You can use Open-AI instead of `ollama`. If you use `ollama`, you need to download the ollama model. Please refer to: [https://ollama.com/library](https://ollama.com/library). + +3. Set up + + Environment variables can be set in `/etc/hoarder/hoarder.env` according to [configuration page](/configuration). **The environment variables that are not specified in `/etc/hoarder/hoarder.env` need to be added by yourself.** + +4. Enable service + + ```shell + sudo systemctl enable --now hoarder.target + ``` + + Then visit `http://localhost:3000` and you should be greated with the Sign In page. + +## Services and Ports + +`hoarder.target` include 3 services: `hoarder-web.service`, `hoarder-works.service`, `hoarder-browser.service`. + +- `hoarder-web.service`: Provide hoarder WebUI service, use `3000` port default. + +- `hoarder-works.service`: Provide hoarder works service, no port. + +- `hoarder-browser.service`: Provide browser headless service, use `9222` port default. |
