| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| dmg_test_0.1.1.zip | 2025-10-22 | 23.1 MB | |
| dmg_darwin_arch64_0.0.5.zip | 2025-08-12 | 8.6 MB | |
| README.md | 2025-08-12 | 11.0 kB | |
| v0.0.5_ Enhanced Installation, Docker Support _ New Features source code.tar.gz | 2025-08-12 | 5.8 MB | |
| v0.0.5_ Enhanced Installation, Docker Support _ New Features source code.zip | 2025-08-12 | 5.9 MB | |
| meetily-frontend_0.0.5_x64_en-US.msi | 2025-08-12 | 7.1 MB | |
| meetily_backend.zip | 2025-08-12 | 71.6 kB | |
| whisper-server.exe | 2025-08-12 | 1.1 MB | |
| meetily-frontend_0.0.5_x64-setup.exe | 2025-08-12 | 5.0 MB | |
| Totals: 9 Items | 56.7 MB | 4 | |
This major release focuses on making Meetily easier to install and use, with significant improvements to the installation process, Docker support, enhanced UI, and privacy-focused analytics.
📦 Installation Guide
🎯 Option 1: Easiest Installation (Recommended)
Windows Users (5-10 minutes)
Step 1: Install the Frontend Application
- Download the installer:
- Go to Latest Releases
-
Look for and download the file ending with
x64-setup.exe(e.g.,meetily-frontend_0.0.5_x64-setup.exe) -
Prepare the installer:
- Navigate to your Downloads folder
- Right-click the downloaded
.exefile → Properties - At the bottom, check the Unblock checkbox → Click OK
-
This prevents Windows security warnings during installation
-
Run the installation:
- Double-click the installer to launch it
- If Windows shows a security warning:
- Click More info → Run anyway, OR
- Follow any permission dialog prompts
- Follow the installation wizard steps
- The app will be installed and available on your desktop/Start menu
Step 2: Install and Start the Backend
- Download the backend:
- From the same releases page
- Download the backend zip file (e.g.,
meetily_backend.zip) -
Extract the zip to a folder like
C:\meetily_backend\ -
Prepare backend files:
- Open PowerShell (search for it in Start menu)
- Navigate to your extracted backend folder:
powershell cd C:\meetily_backend -
Unblock all files (Windows security requirement):
powershell Get-ChildItem -Path . -Recurse | Unblock-File -
Start the backend services:
powershell .\start_with_output.ps1 - This script will:
- Guide you through Whisper model selection (recommended:
baseormedium) - Ask for language preference (default: English)
- Download the selected model automatically
- Start both Whisper server (port 8178) and Meeting app (port 5167)
- Guide you through Whisper model selection (recommended:
What happens during startup:
- Model Selection: Choose from tiny (fastest, basic accuracy) to large (slowest, best accuracy)
- Language Setup: Select your preferred language for transcription
- Auto-download: Selected models are downloaded automatically (~150MB to 1.5GB depending on model)
- Service Launch: Both transcription and meeting services start automatically
✅ Success Verification:
- Check services are running:
- Open browser and visit http://localhost:8178 (should show Whisper API interface)
- Visit http://localhost:5167/docs (should show Meeting app API documentation)
- Test the application:
- Launch Meetily from desktop/Start menu
- Grant microphone permissions when prompted
- You should see the main interface ready to record meetings
Alternative Installation Methods:
Option A: MSI Installer (if exe is blocked)
- Download the
.msifile instead of.exefrom releases - MSI installers are typically less likely to be blocked by Windows Defender
Option B: Windows Defender Issues If Windows Defender blocks the installer:
- Open Windows Security → Virus & threat protection
- Click Manage settings under Virus & threat protection settings
- Scroll to Exclusions → Add or remove exclusions
- Add the downloaded installer file as an exclusion
- Run the installer manually
macOS Users (5-7 minutes)
!!! If you already have a working meetily app, please upgrade to the latest version
Installing fresh
:::bash
# One command installs everything (frontend + backend)
brew tap zackriya-solutions/meetily
brew install --cask meetily
# Start the backend server
meetily-server --language en --model medium
To update existing installation:
:::bash
# Update Homebrew and get latest package information
brew update
# Update to latest version
brew upgrade --cask meetily
brew upgrade meetily-backend
If you find the following error
Error: meetily-backend: SHA-256 mismatch
Expected: f6453947bfb90ecce91990f898e46f3f94d96b3eecba6176b9adea4efb989c70
Actual: 1c79a7d7d24f166fa29bd4c9dba36ace7a3cc28a0d08699c4a18c0b8023e2252
File: /Users/seth/Library/Caches/Homebrew/downloads/39fb3e9ff98c94bf97003752ef3bc770d455cca44b6e5a96e29a873c369429f5--meeting-minutes-main.zip
To retry an incomplete download, remove the file above.
Please refer to the instruction in https://github.com/Zackriya-Solutions/meeting-minutes/issues/148#issuecomment-3183332698
⚠️ Data Backup Warning: You are upgrading from Meetily 0.0.4 to 0.0.5. This upgrade will automatically migrate your data to a new persistent location, but it's recommended to backup your data first.
Current Data Location (Version 0.0.4): - Database:
/opt/homebrew/Cellar/meetily-backend/0.0.4/backend/meeting_minutes.dbNew Persistent Location (Version 0.0.5+): - Database:
/opt/homebrew/var/meetily/meeting_minutes.dbWhat Happens During Upgrade: - ✅ Your data will be automatically migrated to the new persistent location - ✅ Data will survive future upgrades - ✅ The old data in the Cellar directory will be cleaned up
Backup Recommendation: The upgrade ensures data loss doesn't happen, but it's always better to backup your data before proceeding.
Common issue*
SHA Missmatch solution
Please try the following
Run
:::bash
brew cleanup && brew update
Before running
:::bash
brew install --cask meetily
If you still find issues, delete the cache by following
:::bash
rm Users/<your_user_name>/Library/Caches/Homebrew/downloads/39fb3e9ff98c94bf97003752ef3bc770d455cca44b6e5a96e29a873c369429f5--meeting-minutes-main.zip
Then run
:::bash
brew install --cask meetily
Please let me know if this worked for you.
Then open Meetily from Applications folder.
✅ Success Check: App opens and you can start recording immediately.
🐳 Option 2: Docker Installation (Easier Dependencies)
Best for: Developers, testing, or when you want automatic dependency management Performance Note: 20-30% slower than native installation
Quick Start (5-10 minutes)
:::bash
# Clone repository
git clone https://github.com/Zackriya-Solutions/meeting-minutes
cd meeting-minutes/backend
# Windows (PowerShell)
.\build-docker.ps1 cpu
.\run-docker.ps1 start -Interactive
# macOS/Linux (Bash)
./build-docker.sh cpu
./run-docker.sh start --interactive
What you get:
- Automatic dependency management
- No need to install Python, CMake, or build tools
- Consistent environment across all platforms
- Interactive model selection
- Both services running: http://localhost:8178 and http://localhost:5167
🔧 System Requirements
- Minimum: 8GB RAM, 4GB disk space
- Recommended: 16GB+ RAM, 10GB+ disk space
- Docker: 16GB+ RAM allocated to Docker
✨ Major New Features
🎨 Modern User Interface
- shadcn/ui components: Beautiful, accessible interface throughout
- Enhanced settings: Intuitive model configuration and transcript settings
- Better navigation: Improved sidebar and user interactions
- Loading states: Clear progress feedback during operations
📊 Privacy-First Analytics (New!)
- User-controlled tracking: Complete opt-in control over data collection
- GDPR compliant: Transparent privacy policy and data handling
- Analytics disabled by default: Privacy first approach
- Usage insights: Optional performance metrics and feature tracking
🐳 Complete Docker Support (New!)
- Multi-platform containers: CPU, GPU, and macOS optimized builds
- One-click deployment: Docker Compose for instant setup
- Automated scripts: Streamlined build and deployment
- Interactive setup: Guided model and language selection
🛠 Enhanced Backend
- Robust database handling: Better error recovery and data integrity
- Improved transcript processing: More reliable and efficient processing
- Schema validation: Comprehensive input validation
- Better sorting: Fixed summary generation ordering issues
📚 Installation Troubleshooting
Windows Issues
- Windows Defender blocking: Right-click installer → Properties → Unblock
- PowerShell errors: Run
Set-ExecutionPolicy Bypass -Scope Process -Force - Build failures: Use pre-built backend instead of building from source
macOS Issues
- Permission errors: Run
chmod +xon script files - App won't open: Run
xattr -cr /Applications/meetily-frontend.app - Port conflicts: Check if ports 8178/5167 are available with
lsof -i :8178
Docker Issues
- Containers crashing: Increase Docker RAM to 12GB+
- Port conflicts: Run
./run-docker.sh stopto clean up - Model download failures: Manually download with
./run-docker.sh models download base.en
🚀 What's Improved
Installation Experience
- Pre-built releases: No more complex build processes for most users
- Automated scripts: Windows PowerShell scripts handle dependencies
- Better documentation: Step-by-step guides with success checks
- Docker option: Alternative installation method with easier dependency management
Performance & Reliability
- Enhanced error handling: Better recovery from issues
- Improved processing: More reliable transcript and summary generation
- Database robustness: Better data integrity and error recovery
- Cross-platform compatibility: Verified across Windows, macOS, and Linux
Developer Experience
- Comprehensive documentation: Enhanced README and setup guides
- Build automation: Improved scripts and Docker configurations
- Better debugging: Enhanced logging and error reporting
🔄 Migration Notes
- No breaking changes: Existing installations continue to work
- Opt-in features: New analytics and Docker deployment are optional
- Easy upgrade: Download new release and follow installation steps
- Data preservation: All existing meeting data and settings maintained
This release makes Meetily significantly easier to install and use while adding powerful new features and maintaining our commitment to privacy-first design.