diff options
| author | soryu <soryu@soryu.co> | 2026-01-16 21:24:09 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-16 21:24:09 +0000 |
| commit | 4de5b1857c7ac637b8826ce785e1db97cf0e02e3 (patch) | |
| tree | 89d837db3ff30360f3e2831819b25ce4f02acfc7 /README.md | |
| parent | f84a7f2d820f6f432be2b1d78d6bf833b5b19380 (diff) | |
| download | soryu-4de5b1857c7ac637b8826ce785e1db97cf0e02e3.tar.gz soryu-4de5b1857c7ac637b8826ce785e1db97cf0e02e3.zip | |
Add curl-based install script for Makima CLI (#1)
* Add curl-based installation script for Makima CLI
Add install.sh that automatically downloads the right version of makima
from the latest GitHub release based on the user's OS and architecture.
Features:
- Auto-detects OS (Linux/macOS) and architecture (x86_64/arm64)
- Fetches latest release tag from GitHub API
- Downloads appropriate binary for the user's platform
- Supports custom INSTALL_DIR environment variable
- Graceful error handling with colored output
- Supports being piped from curl (curl -fsSL URL | bash)
- Verifies installation and checks PATH
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* Task completion checkpoint
* Update install.sh to use master branch in usage comments
Changed URL references from 'main' to 'master' to match the
repository's actual default branch name.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* Add curl-based installation documentation to README
Document the new install.sh script in the README with:
- Quick install command using curl
- Custom INSTALL_DIR environment variable option
- Note about automatic OS/architecture detection
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* Task completion checkpoint
---------
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -5,3 +5,25 @@ soryu.co & makima.jp monorepo ## makima.jp <img src="frontend/public/logo/makima-logo.svg" alt="Makima concentric logo" height="22" style="vertical-align: middle;" /> Dynamic mesh listening platform for contested domains: live audio surveillance via acoustic arrays, relentless telemetry for detection and orchestration, and the <ruby>支配<rt>しはい</rt></ruby> operations system linking unmanned, cyber, and autonomous effects. + +## Installation + +### Quick Install (Recommended) + +Install the Makima CLI using the automated installer: + +```bash +curl -fsSL https://raw.githubusercontent.com/soryu-co/soryu/master/install.sh | bash +``` + +This will download the latest release and install it to `/usr/local/bin`. + +### Custom Install Location + +To install to a custom directory, set the `INSTALL_DIR` environment variable: + +```bash +curl -fsSL https://raw.githubusercontent.com/soryu-co/soryu/master/install.sh | INSTALL_DIR=/opt/bin bash +``` + +The installer automatically detects your OS (macOS/Linux) and architecture (x86_64/arm64) and downloads the appropriate binary. |
