aboutsummaryrefslogtreecommitdiffstats
path: root/docs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* docs: Release the 0.23.1 docsMohamed Bassem2025-04-0528-0/+1348
|
* docs: Update installation docs with karakeepMohamedBassem2025-04-053-32/+30
|
* readme: More readme fixes for the new nameMohamed Bassem2025-04-051-0/+4
|
* readme: Update readme and docs for the new nameMohamed Bassem2025-04-051-3/+3
|
* chore: Hoarder to Karakeep rebranding (#1199)Mohamed Bassem2025-04-051-0/+18
| | | | | | | | | * The new logo * Changing hoarder.app to karakeep.app * Adding the admin panel warning * Update the readme
* feat: Allow storing assets in a separate directory. Fixes #1091Mohamed Bassem2025-03-291-3/+4
|
* feat(workers): Add CRAWLER_SCREENSHOT_TIMEOUT_SEC (#1155)Chang-Yen Tseng2025-03-271-0/+1
|
* docs: Fixed missing semicolon in update admin password section (#1169)JF2025-03-271-1/+3
| | | Command is not accepted within sqlite3 otherwise and slightly confusing
* docs: Release the 0.23 docsMohamed Bassem2025-03-2227-0/+1322
|
* feat(auth): Added env variable for OAuth timeout (#1136)Kaio Cesar2025-03-221-0/+1
| | | | | | | * feat(auth): add configurable OAuth timeout option * fix(config): change OAUTH_TIMEOUT to use z.coerce.number for better type handling * docs: Added instructions for OAUTH_TIMEOUT flag
* feat(workers): allows videoWorker to use ytdlp command line arguments ↵erik-nilcoast2025-03-161-0/+1
| | | | specified in the config. Fixes #775 #792 (#1117)
* fix: Move away from JSON outputs to structured outputs. Fixes #1047Mohamed Bassem2025-03-021-13/+14
|
* docs: Add instructions for node environment setup (#1078)Mosab Ibrahim2025-03-021-0/+59
| | | | Hoarder uses node version 22, and makes use of `corepack` features. Instructions for setting those up correctly were missing.
* fix: custom fetch wrapper for ollama inference. Fixes #656 (#1032)Gavin Mogan2025-02-161-12/+13
| | | | | | | | | | | | | | | | * Add configurable fetch timeout for Ollama client * Worker service needs access to the .env file * repair typescript types * Update customFetch.ts * update the config docs --------- Co-authored-by: sbarbett <shane@barbetta.me> Co-authored-by: Mohamed Bassem <me@mbassem.com>
* docs: Release the 0.22 docsMohamed Bassem2025-02-0227-0/+1259
|
* feat: Change default max upload size to 50MB up from 4MBMohamed Bassem2025-02-021-5/+5
|
* docs: Update single file docsMohamed Bassem2025-02-021-1/+11
|
* docs: Feature obsidian's plugin and hoarder's pipette in community projectsMohamed Bassem2025-02-011-4/+19
|
* deps: Upgrade typescript to 5.7Mohamed Bassem2025-02-011-1/+1
|
* docs: Various Kubernetes deployment improvements (#862)Eric B2025-01-191-4/+45
| | | | | | | | | | | | | | | | | | | | | | * changed the secrets from configmap to secret object, create ingress instead of loadbalancer. Implemented the generation of a secret from the .env file and then put as environment variables into the deployments. Nextauth_URL is now set in the kustomization file and is then generated into a configmap and put as an env into the deployments. Opionated change: the web service is now a clusterIP Service and an ingress object is included. * changed the tls secret name in kustomize to a more example name * fixed image name in kustomization so the version tag gets replaced properly * tags are without v, otherwise we get an imagepullerror * removed unneccessary parts of the .env.sample * split env and secrets, added documentation, created sample ingress. changed the default from ingress back to Loadbalancer. Added Documentation on how to change to ingress and add TLS Support. split env to secret and env file which have to be configured before deploying.
* feat: Change webhooks to be configurable by usersMohamed Bassem2025-01-191-5/+2
|
* feat(webhook): Implement webhook functionality for bookmark events (#852)玄猫2025-01-191-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | | * feat(webhook): Implement webhook functionality for bookmark events - Added WebhookWorker to handle webhook requests. - Integrated webhook triggering in crawlerWorker after video processing. - Updated main worker initialization to include WebhookWorker. - Enhanced configuration to support webhook URLs, token, and timeout. - Documented webhook configuration options in the documentation. - Introduced zWebhookRequestSchema for validating webhook requests. * feat(webhook): Update webhook handling and configuration - Changed webhook operation type from "create" to "crawled" in crawlerWorker and documentation. - Enhanced webhook retry logic in WebhookWorker to support multiple attempts. - Updated Docker configuration to include new webhook environment variables. - Improved validation for webhook configuration in shared config. - Adjusted zWebhookRequestSchema to reflect the new operation type. - Updated documentation to clarify webhook configuration options and usage. * minor modifications --------- Co-authored-by: Mohamed Bassem <me@mbassem.com>
* docs: Fix type in intro.md (#901)Zaza2025-01-191-1/+1
| | | Fixed a simple typo
* feat: Add ability to filter by bookmark typeMohamed Bassem2025-01-121-13/+14
|
* feat: Add support for singlefile extension uploads. #172Mohamed Bassem2025-01-111-0/+20
|
* docs: Fix openAI pricing link (#816)Jack Bailey2025-01-111-1/+1
| | | | | * Fix openAI pricing link * Edit the correct file
* docs: Fix type in the docs hightly -> highly (#853)Andy George2025-01-1115-15/+15
|
* docs: Release the 0.21 docsMohamed Bassem2025-01-0526-0/+1142
|
* docs: Add search query language documentationMohamed Bassem (aider)2025-01-011-0/+68
|
* docs: Add firefox import-export instructions (#799)Deepak Kapoor2025-01-011-0/+6
| | | | | | | * Added firefox in instructions * Update 10-import.md * Update 10-import.md
* feat: Add support for embeddings in the inference interface (#403)Mohammed Farghal2024-12-291-11/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * support embeddings generation in inference.ts (cherry picked from commit 9ae8773ad13ed87af8f72f167bdd56e02ea66f15) * make AI worker generate embeddings for text bookmark * make AI worker generate embeddings for text bookmark * fix unintentional change -- inference image model * support embeddings for PDF bookmarks * Upgrade drizzle-kit Existing version is not working with the upgraded version of drizzle-orm. I removed the "driver" to the match the new schema of the Config. Quoting from their Config: * `driver` - optional param that is responsible for explicitly providing a driver to use when accessing a database * *Possible values*: `aws-data-api`, `d1-http`, `expo`, `turso`, `pglite` * If you don't use AWS Data API, D1, Turso or Expo - ypu don't need this driver. You can check a driver strategy choice here: https://orm. * fix formatting and lint * add comments about truncate content * Revert "Upgrade drizzle-kit" This reverts commit 08a02c8df4ea403de65986ed1265940c6c994a20. * revert keep alive field in Ollama * change the interface to accept multiple inputs * docs --------- Co-authored-by: Mohamed Bassem <me@mbassem.com>
* docs: Add troubleshooting guideMohamed Bassem2024-12-293-0/+33
|
* docs: Add Telegram Bot to community projects (#783)Miguel Hernández2024-12-282-0/+16
|
* readme: Update readme with new featuresMohamed Bassem2024-12-281-2/+4
|
* docs: Update security-considerations.md to fix a typo (#762)Mark Pitblado2024-12-282-2/+2
| | | | | | | * Update 08-security-considerations.md Add missing "t" to "untrusted" * fix: add missing "t" to untrusted
* docs: Fix broken link in Debian/Ubuntu install doc (#749)Chris2024-12-222-2/+2
| | | | | * Fix broken link in Debian/Ubuntu install doc * Fix broken link in 0.20.0 versioned docs
* docs: Minor language changes to the docker installation docs (#615)Mike Pond2024-12-221-2/+10
| | | Changed some language in the docker installation documentation that I found confusing when I tried to follow the steps.
* docs: Release the 0.20 docsMohamed Bassem2024-12-2224-0/+1016
|
* docs: Add minimal installation docs, and fix other docsMohamed Bassem2024-12-223-17/+71
|
* feature: Add an admin notice about the usage of the legacy container imagesMohamed Bassem2024-12-211-0/+66
|
* docs: Add the community projects page to docsMohamed Bassem2024-12-211-0/+24
|
* docs: Add Linux install script and documentation (#707)vhsdream2024-12-021-0/+70
| | | | | | | * Add Linux install script and documentation * Simplify Documentation - remove make executable * Update script: remove output suppression, other small changes
* feature: Add support for tag placeholders in custom prompts. #111 (#612)kamtschatka2024-11-241-0/+5
| | | | | | | | | | * PR for #111 added a $tags,$aiTags and $userTags placeholder that will be replaced with all tags, ai tags or user tags during inference * Use the new buildImpersonatingTRPCClient util --------- Co-authored-by: Mohamed Bassem <me@mbassem.com>
* docs: Fix docs buildMohamedBassem2024-11-241-1/+2
|
* deps(mobile): Upgrade to Expo 52 (#692)Mohamed Bassem2024-11-241-2/+2
| | | | | | | | | | | * fix(mobile): Sharing bookmark modal * WIP: Upgrade to 52 * post ugprade fixes * more fixes * fix padding in tabbar
* docs: Add pikapods.com as installation option (#676)Manu2024-11-231-0/+28
| | | | | | | | | | | * Add pikapods.com as install option * Include info about the pricing and the initial credit * Fix typo in docs --------- Co-authored-by: Mohamed Bassem <me@mbassem.com>
* fix(workers): Don't block connection to chrome when failing to download ↵Mohamed Bassem2024-11-211-0/+1
| | | | adblock list. #674
* docker: Upgrade meilisearch to v1.11.1 (#629)Marc2024-11-101-1/+1
|
* docs: Release the 0.19 docsMohamed Bassem2024-11-0919-0/+768
|
* readme: Add RSS, REST API and video archival to READMEMohamed Bassem2024-11-091-1/+3
|