Move the django app into the src/khoj folder for better organization and functionality

- Our pypi package currently does not work because the django app and associated database is not included. To remedy this issue, move the app into the src/khoj folder. This has the added benefit of improved organization of the codebase, as all server related code is now in a single folder
- Update associated file paths and system references
This commit is contained in:
sabaimran
2023-11-21 10:56:04 -08:00
parent 6d8e889917
commit a474c31e02
62 changed files with 48 additions and 48 deletions

View File

@@ -44,9 +44,9 @@ from khoj.processor.conversation.openai.gpt import extract_questions
from khoj.processor.conversation.gpt4all.chat_model import extract_questions_offline
from fastapi.requests import Request
from database import adapters
from database.adapters import EntryAdapters, ConversationAdapters
from database.models import (
from khoj.database import adapters
from khoj.database.adapters import EntryAdapters, ConversationAdapters
from khoj.database.models import (
LocalMarkdownConfig,
LocalOrgConfig,
LocalPdfConfig,