You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you very much in advance for your help. I'm looking forward to having a client to interact with my notes once I have Khoj set up.
I'm unable to sync my files into Khoj. I've managed to get Khoj running, offline, with Ollama. However, I'm unable to sync any files. My files are predominantly .org files.
Desktop
With the Desktop Application, I've selected a number of both files and folders. It says "Connected to Server". But when I hit "force sync", I'm unable to see anything changing in the docker-compose window output.
Desktop Config:
services:
database:
image: ankane/pgvectorenvironment:
POSTGRES_DB: postgresPOSTGRES_USER: postgresPOSTGRES_PASSWORD: ...volumes:
- khoj_db:/var/lib/postgresql/data/healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]interval: 30stimeout: 10sretries: 5sandbox:
image: ghcr.io/khoj-ai/terrarium:latestsearch:
image: docker.io/searxng/searxng:latestvolumes:
- khoj_search:/etc/searxngenvironment:
- SEARXNG_BASE_URL=http://localhost:8080/server:
depends_on:
database:
condition: service_healthy# Use the following line to use the latest version of khoj. Otherwise, it will build from source. Set this to ghcr.io/khoj-ai/khoj-cloud:latest if you want to use the prod image.image: ghcr.io/khoj-ai/khoj:latestports:
- "42110:42110"extra_hosts:
- "host.docker.internal:host-gateway"working_dir: /appvolumes:
- khoj_config:/root/.khoj/
- khoj_models:/root/.cache/torch/sentence_transformers
- khoj_models:/root/.cache/huggingface# Use 0.0.0.0 to explicitly set the host ip for the service on the container. https://pythonspeed.com/articles/docker-connection-refused/environment:
- POSTGRES_DB=postgres
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=...
- POSTGRES_HOST=database
- POSTGRES_PORT=5432
- KHOJ_DJANGO_SECRET_KEY=...
- KHOJ_DEBUG=False
- KHOJ_ADMIN_EMAIL=...
- KHOJ_ADMIN_PASSWORD=...# Default URL of Terrarium, the Python sandbox used by Khoj to run code. Its container is specified above
- KHOJ_TERRARIUM_URL=http://sandbox:8080# Default URL of SearxNG, the default web search engine used by Khoj. Its container is specified above
- KHOJ_SEARXNG_URL=http://search:8080# Uncomment line below to use with Ollama running on your local machine at localhost:11434.# Change URL to use with other OpenAI API compatible providers like VLLM, LMStudio etc.
- OPENAI_BASE_URL=http://host.docker.internal:11434/v1/
- JINA_API_KEY=jina_...# Comment out this line when you're using the official ghcr.io/khoj-ai/khoj-cloud:latest prod image.command: --host="0.0.0.0" --port=42110 -vv --anonymous-mode --non-interactive
The text was updated successfully, but these errors were encountered:
I haven't been able to diagnose the issues with the Desktop App, but I found that the issues with the Emacs app were actually that my repostiory was perhaps too large. It seemed to run until killed by OOM then was restarting.
The Desktop app didn't strike any activity even choosing a small directory so it is something else. No matter, I'm happy without it for now.
I've found a solution using the khoj-sync python service (modified) from here: https://gist.github.com/dj311/fad8666c361261ed4af68285a233250a
This works, as you're able to choose an upload batch size. Maybe this should be an option in the emacs interface as well.
Anyway, I'm happy for this issue to be closed, as a manual python sync client is working for me and having this run as a service suits my workflow better anyway.
Describe the bug
Thank you very much in advance for your help. I'm looking forward to having a client to interact with my notes once I have Khoj set up.
I'm unable to sync my files into Khoj. I've managed to get Khoj running, offline, with Ollama. However, I'm unable to sync any files. My files are predominantly .org files.
Desktop
With the Desktop Application, I've selected a number of both files and folders. It says "Connected to Server". But when I hit "force sync", I'm unable to see anything changing in the docker-compose window output.
Desktop Config:
Emacs
With the Emacs client, I can run a force update, and I will get a series of output. However, it ends like this:
So it runs to here:
khoj/src/khoj/routers/api_content.py
Line 556 in 427ec06
But I never get the success log:
khoj/src/khoj/routers/api_content.py
Line 608 in 427ec06
Emacs config:
Web client
Under the admin panel, the "Entrys" database is empty.
To Reproduce
Steps to reproduce the behavior:
Screenshots
If applicable, add screenshots to help explain your problem.
Platform
If self-hosted
Additional context
docker-compose.yml
The text was updated successfully, but these errors were encountered: