Add comprehensive cross-platform setup scripts#16
Merged
Conversation
- Add setup script that auto-detects platform and runs appropriate installer - Add setup.sh for Unix/Linux/macOS with multi-package-manager support - Add setup.ps1 for Windows with Chocolatey integration - Add SETUP.md with detailed documentation and troubleshooting - Support flexible options: --skip-tests, --skip-web, --skip-ant - Install complete toolchain: Rust, Node.js, system deps, Autonomi CLI - Include quality checks: clippy, rustfmt, workspace build verification - Tested and verified: successfully builds CLI and daemon tools Resolves dependency installation complexity and enables one-command setup for new contributors across all major platforms.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🚀 Cross-Platform Setup Scripts
This PR adds comprehensive setup scripts that automate the installation of all dependencies needed to build and run the MutAnt project across different platforms.
📁 Files Added
setup- Cross-platform launcher that auto-detects OS and runs appropriate scriptsetup.sh- Unix/Linux/macOS setup with multi-package-manager support (apt, yum, pacman, zypper, brew)setup.ps1- Windows PowerShell setup with Chocolatey integrationSETUP.md- Comprehensive documentation with manual installation and troubleshooting✨ Features
--skip-tests,--skip-web,--skip-ant🛠️ What Gets Installed
🧪 Testing
✅ Verified on Linux: Successfully installs all dependencies and builds project
✅ CLI tool works:
mutant --helpandmutant --versionfunctional✅ Daemon works:
mutant-daemon --helpfunctional✅ All dependencies resolved: 200+ Rust crates compile successfully
📋 Usage
🎯 Benefits
🔧 Implementation Details
This addresses the complexity of manual dependency installation and provides a smooth onboarding experience for new contributors and users.
Pull Request opened by Augment Code with guidance from the PR author