Releases: localcloud-sh/localcloud
Releases · localcloud-sh/localcloud
v0.2.5
v0.2.4
What's Changed
- Update README and release workflow for Windows support
- readme refined
- Add programming language agnostic messaging
v0.2.3
What's Changed
- Add programming language agnostic messaging
v0.2.2
What's Changed
- Implement build-time version injection
v0.2.1
What's Changed
- increased ai code assistant friendliness
- increased ai code assistant friendliness
- fix export go
- deleted template codes
- test case added
- test case added
- refined readme
- refined readme
- refined readme
- test script added v2
- test script added
- create.go removed
- tunnel enchanced
- added mongodb component
- added mongodb component
- added mongodb component
- separated vector and standard db
- updated readme
- removed init
- fixed setup.go
- modified setup.go
v0.2.0
What's Changed
- increased ai code assistant friendliness
- increased ai code assistant friendliness
- fix export go
- deleted template codes
- test case added
- test case added
- refined readme
- refined readme
- refined readme
- test script added v2
- test script added
- create.go removed
- tunnel enchanced
- added mongodb component
- added mongodb component
- added mongodb component
- separated vector and standard db
- updated readme
- removed init
- fixed setup.go
- modified setup.go
v0.1.2
What's Changed
- fix automated release workflow
- Add automated release workflow
- Refactor: Update module path to github.com/localcloud-sh/localcloud
- update: README.md
- release fix
- release fix
v0.1.1 - First Stable Release
🎉 LocalCloud v0.1.1
First stable release after v0.1.0-alpha!
✨ What's New
- Stable Release: Removed alpha tag, production-ready
- Homebrew Support: Easy installation via
brew install - Improved Stability: Enhanced error handling and recovery
- Better Performance: Optimized Docker container management
- Cross-Platform: Full support for macOS (Intel & Apple Silicon), Linux, and Windows
📦 Installation
Homebrew (Recommended for macOS)
brew tap localcloud-sh/tap
brew install localcloudDirect Download
Choose the appropriate file for your platform:
- macOS Apple Silicon (M1/M2/M3):
localcloud-0.1.1-darwin-arm64.tar.gz - macOS Intel:
localcloud-0.1.1-darwin-amd64.tar.gz - Linux AMD64:
localcloud-0.1.1-linux-amd64.tar.gz - Linux ARM64:
localcloud-0.1.1-linux-arm64.tar.gz - Windows AMD64:
localcloud-0.1.1-windows-amd64.zip
Quick Install (macOS/Linux)
# macOS Apple Silicon
curl -L https://github.com/localcloud-sh/localcloud/releases/download/v0.1.1/localcloud-0.1.1-darwin-arm64.tar.gz | tar xz
sudo mv localcloud-darwin-arm64 /usr/local/bin/localcloud
sudo ln -sf /usr/local/bin/localcloud /usr/local/bin/lc
# macOS Intel
curl -L https://github.com/localcloud-sh/localcloud/releases/download/v0.1.1/localcloud-0.1.1-darwin-amd64.tar.gz | tar xz
sudo mv localcloud-darwin-amd64 /usr/local/bin/localcloud
sudo ln -sf /usr/local/bin/localcloud /usr/local/bin/lc🚀 Getting Started
# Initialize a new project
lc init my-assistant
cd my-assistant
# Configure your services (interactive setup)
lc setup
# Start your local AI stack
lc start
# Check service status
lc status🐛 Bug Fixes
- Fixed container restart issues
- Improved error messages for missing Docker
- Better handling of port conflicts
- Fixed memory leak in long-running services
📝 Notes
- Docker Desktop is required for all platforms
- Minimum 8GB RAM recommended
- 20GB free disk space for AI models
🙏 Thank You
Thanks to all our early alpha testers for the valuable feedback!
📚 Documentation
- [Getting Started Guide](https://github.com/localcloud-sh/localcloud/wiki)
- [API Reference](https://github.com/localcloud-sh/localcloud/wiki/API)
- [Troubleshooting](https://github.com/localcloud-sh/localcloud/wiki/Troubleshooting)
Full Changelog: v0.1.0-alpha...v0.1.1
🚧 LocalCloud v0.1.0-alpha - First Alpha Release
🚧 LocalCloud v0.1.0-alpha - First Alpha Release
Welcome brave early testers! This is the very first alpha release of LocalCloud.
⚠️ ALPHA SOFTWARE: This release is for testing and feedback only. Expect bugs, breaking changes, and missing features. Do not use in production!
🧪 What's Included in Alpha
- Core CLI with
lcshorthand (basic commands work) - Service orchestration (Docker container management)
- Interactive setup wizard (experimental)
- Cross-platform binaries (testing needed)
📥 Installation (Alpha Testing)
macOS (Intel):
curl -L https://github.com/localcloud-sh/localcloud/releases/download/v0.1.0-alpha/localcloud-v0.1.0-alpha-darwin-amd64.tar.gz | tar xz
sudo install -m 755 localcloud-darwin-amd64 /usr/local/bin/localcloud
sudo ln -sf /usr/local/bin/localcloud /usr/local/bin/lcmacOS (Apple Silicon):
curl -L https://github.com/localcloud-sh/localcloud/releases/download/v0.1.0-alpha/localcloud-v0.1.0-alpha-darwin-arm64.tar.gz | tar xz
sudo install -m 755 localcloud-darwin-arm64 /usr/local/bin/localcloud
sudo ln -sf /usr/local/bin/localcloud /usr/local/bin/lcLinux (AMD64):
curl -L https://github.com/localcloud-sh/localcloud/releases/download/v0.1.0-alpha/localcloud-v0.1.0-alpha-linux-amd64.tar.gz | tar xz
sudo install -m 755 localcloud-linux-amd64 /usr/local/bin/localcloud
sudo ln -sf /usr/local/bin/localcloud /usr/local/bin/lcLinux (ARM64):
curl -L https://github.com/localcloud-sh/localcloud/releases/download/v0.1.0-alpha/localcloud-v0.1.0-alpha-linux-arm64.tar.gz | tar xz
sudo install -m 755 localcloud-linux-arm64 /usr/local/bin/localcloud
sudo ln -sf /usr/local/bin/localcloud /usr/local/bin/lcWindows (Experimental):
# Download: localcloud-v0.1.0-alpha-windows-amd64.zip
# Extract and add to PATH🔬 Testing Focus Areas
We need your help testing:
- ✅ Does
lc initcreate projects correctly? - ✅ Does
lc setupwizard work smoothly? - ✅ Can you start/stop services?
- ✅ Do error messages make sense?
⚠️ Known Issues
- Very early stage - many features incomplete
- No application templates yet
- Limited error handling
- Windows support is minimal
- First run downloads can be slow
🐛 How to Help
- Test basic flows and report what breaks
- Share your environment: OS, Docker version, RAM
- Submit issues with detailed reproduction steps
- Join discussions to share ideas
📊 Alpha Metrics
- Expected stability: ~60%
- API compatibility: Will change
- Documentation: Minimal
- Support: Community only
🚀 What's Next
- v0.2.0-alpha: Improved stability
- v0.3.0-beta: Feature complete
- v1.0.0: Production ready
Thank you for testing LocalCloud at this early stage! 🙏