minima

On-premises conversational RAG with configurable containers

GitHub Stars

1,008

User Rating

Not Rated

Favorites

0

Views

86

Forks

90

Issues

13

Installation
Difficulty
Intermediate
Estimated Time
10-20 minutes

Installation

Installation

Prerequisites

Please specify required software and versions:
Node.js: 18.0.0 or higher
npm: 8.0.0 or higher
Claude Desktop: Latest version

Installation Steps

1. Clone Repository

bash
git clone https://github.com/dmayboroda/minima.git
cd minima

2. Install Dependencies

bash
npm install

3. Set Environment Variables

Create a .env file in the project’s root directory and set the following variables:
plaintext
LOCAL_FILES_PATH=
EMBEDDING_MODEL_ID=
EMBEDDING_SIZE=
OLLAMA_MODEL=
RERANKER_MODEL=
USER_ID=
PASSWORD=

4. Start Server

For fully local installation:
bash
docker compose -f docker-compose-ollama.yml --env-file .env up --build
For ChatGPT enabled installation:
bash
docker compose -f docker-compose-chatgpt.yml --env-file .env up --build
For MCP integration:
bash
docker compose -f docker-compose-mcp.yml --env-file .env up --build

Troubleshooting

Common Issues

Issue: Server won't start Solution: Check Node.js version and reinstall dependencies. Issue: Not recognized by Claude Desktop Solution: Verify configuration file path and syntax.

Additional Resources