-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Baldri edited this page Feb 11, 2026
·
1 revision
- Download the latest
.dmgfile from the Releases page - Open the
.dmgfile - Drag Mingly into the Applications folder
- Launch Mingly from the Launchpad or Finder
Note: On first launch, macOS may ask for a security confirmation. Go to System Settings > Privacy & Security and click Open Anyway.
- Download the latest
.exeinstaller from the Releases page - Run the installer
- Choose the installation directory (default:
C:\Program Files\Mingly) - Mingly will automatically create a desktop shortcut and Start Menu entry
- Launch Mingly from the shortcut
Prerequisites:
- Node.js 18 or later
- npm 9 or later
git clone https://github.com/Baldri/mingly.git
cd mingly
npm install
npm run devThe app will start automatically in development mode.
npm run build
npm run distThe installer will be created in the release/ directory.
For running as a headless server without a desktop UI:
git clone https://github.com/Baldri/mingly.git
cd mingly
docker compose up -dThree services will start:
- Mingly Server on port 3939
- Qdrant (vector database) on port 6333
- RAG Server (embeddings) on port 8001
Check the status:
curl http://localhost:3939/health| Component | Minimum | Recommended |
|---|---|---|
| OS | macOS 12+ / Windows 10+ | macOS 14+ / Windows 11 |
| RAM | 4 GB | 8 GB |
| Disk Space | 500 MB | 2 GB (with local models) |
| Node.js | 18.x | 20.x (source install only) |
After installation, the Setup Wizard will start automatically. It guides you through:
- Language selection (English/German)
- API key configuration
- Deployment mode selection
- Optional knowledge base setup
Next: Configuration
User Guide (EN)
Benutzerhandbuch (DE)
Developer