-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: Fix postgres install instruction #182
Conversation
Fix instruction on how to install postgres Docs
WalkthroughThe changes in this pull request involve updates to the Changes
Possibly related PRs
Suggested reviewers
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Outside diff range and nitpick comments (1)
README.md (1)
32-36
: Consider adding context about PostgreSQL support.To help users make informed decisions, consider adding:
- Brief explanation of when PostgreSQL support is needed
- Link to PostgreSQL configuration requirements
- Reference to the existing PostgreSQL setup section (where users need to set
DB_PROVIDER=postgres
)Example addition:
### With pip with PostgreSQL support + +For users requiring PostgreSQL as the vector store backend: ```bash pip install 'cognee[postgres]'
+After installation, follow the PostgreSQL configuration instructions to set up your database.
</blockquote></details> </blockquote></details> <details> <summary>📜 Review details</summary> **Configuration used: CodeRabbit UI** **Review profile: CHILL** <details> <summary>📥 Commits</summary> Reviewing files that changed from the base of the PR and between 9d7f58c1f76bd0bfc617369a4fdcb96910e2bf48 and 2ae2b7b98d9d21d92c56a0a083accf703786b69c. </details> <details> <summary>📒 Files selected for processing (1)</summary> * `README.md` (1 hunks) </details> <details> <summary>🔇 Additional comments (1)</summary> <details> <summary>README.md (1)</summary> `32-36`: **LGTM! The PostgreSQL installation command is correct.** The pip installation command for PostgreSQL support is properly formatted and placed in a logical location within the documentation. </details> </details> </details> <!-- This is an auto-generated comment by CodeRabbit for review status -->
Fix instruction on how to install postgres
Docs
Summary by CodeRabbit
pip
andpoetry
.pip
:pip install 'cognee[postgres]'
poetry
:poetry add cognee -E postgres