* Partial implementation of phase-0
* Partial implementation of phase-1
* add report
* add postgress
* Revert "add postgress"
This reverts commit 27778dc6bb3906b5220dd386e47fe32ca7415332.
* remove junk
* Cleaned up annd setup docs
* update docs
* moved report
* Updated load_markdown_files function: Now returns tuples with (content, title, relative_path) instead of just (content, title)
* fixes to load docs script and more env variables for llm configuration
* update prod values
* update docs
* apolo docs support with linking
* update docs to reflect url conventions and mapping with docs
* Adds ingress and forwardAuth configurations
Adds ingress configuration to expose the application.
Adds forwardAuth configuration to enable user authentication.
Includes middleware to strip headers.
* Adds ingress and forwardAuth configurations
Adds ingress configuration to expose the application.
Adds forwardAuth configuration to enable user authentication.
Includes middleware to strip headers.
* Adds ingress and forward authentication middleware support
* Adds ingress and forward authentication middleware support
* Enables vector extension initialization in PostgreSQL container
Mounts initialization scripts in the PostgreSQL service to automate enabling the vector extension on startup.
This ensures the vector extension is available without manual setup, improving developer experience and consistency across environments.
* Pins application image version to 1.3.8
* Partial implementation of phase-0
* Partial implementation of phase-1
* add report
* add postgress
* Revert "add postgress"
This reverts commit 27778dc6bb3906b5220dd386e47fe32ca7415332.
* remove junk
* Cleaned up annd setup docs
* update docs
* moved report
* Updated load_markdown_files function: Now returns tuples with (content, title, relative_path) instead of just (content, title)
* fixes to load docs script and more env variables for llm configuration
* update prod values
* update docs
* apolo docs support with linking
* update docs to reflect url conventions and mapping with docs
* Adds ingress and forwardAuth configurations
Adds ingress configuration to expose the application.
Adds forwardAuth configuration to enable user authentication.
Includes middleware to strip headers.
* Adds ingress and forward authentication middleware support
- Add prominent warning about required initialization steps
- Document common errors (AttributeError: __aenter__ and KeyError: 'history_messages')
- Add troubleshooting section with specific solutions
- Add inline comments in code example highlighting initialization requirements
This addresses user confusion when LightRAG fails with cryptic errors due to
missing initialization calls. The documentation now clearly states that both
await rag.initialize_storages() and await initialize_pipeline_status() must
be called after creating a LightRAG instance.