Skip to content

Conversation

Copilot
Copy link

@Copilot Copilot AI commented May 25, 2025

Added documentation to the README explaining how to run multiple revect instances for different purposes:

  • Added a new section "🧠 Running Multiple Containers" that explains:
    • How to run multiple containers with different ports (8000, 8001, etc.)
    • How to use different volume mounts for separate databases
    • Use case examples for separating knowledge domains (general vs coding-specific)

This allows users to set up specialized knowledge bases - one for general knowledge and another for coding-related information, as requested in the issue.

Example from the added documentation:

# Container 1: General Knowledge
docker run \
  -p 8000:3000 \
  -v ~/Documents/revect-general:/app/data \
  ...

# Container 2: Coding Knowledge
docker run \
  -p 8001:3000 \
  -v ~/Documents/revect-coding:/app/data \
  ...

Also included connection examples for MCP to access each specialized knowledge container.

Fixes #56.

Warning

Firewall rules blocked me from connecting to one or more addresses

I tried to connect to the following addresses, but was blocked by firewall rules:

  • bun.sh
    • Triggering command: curl -fsSL REDACTED (dns block)

If you need me to access, download, or install something from one of these locations, you can either:


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

@Copilot Copilot AI changed the title [WIP] Add readme note post setup Add README note about running multiple instances May 25, 2025
@Copilot Copilot AI requested a review from zackify May 25, 2025 18:39
Copilot finished work on behalf of zackify May 25, 2025 18:39
Copilot finished work on behalf of zackify May 25, 2025 19:23
Copilot finished work on behalf of zackify May 25, 2025 19:26
@zackify zackify marked this pull request as ready for review May 25, 2025 20:37
@zackify zackify merged commit ead2a2a into main May 25, 2025
@zackify zackify deleted the copilot/fix-56 branch May 25, 2025 20:38
@Copilot Copilot AI restored the copilot/fix-56 branch May 25, 2025 20:38
Copilot finished work on behalf of zackify May 25, 2025 20:38
@zackify zackify deleted the copilot/fix-56 branch May 30, 2025 13:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add readme note post setup
2 participants