Skip to content

Install & Build.md

Dark Meta edited this page Aug 18, 2025 · 1 revision

Install & Build

Prerequisites

  • Rust: stable toolchain via rustup (ensure cargo available)
  • Git: for cloning and contributions
  • Node.js (optional): enables aeonmi run to execute JS output
  • Unicode‑capable font: see Fonts & Unicode

Clone

git clone https://github.com/DarthMetaCrypro/Aeonmi.git
cd Aeonmi

Build

cargo build
# or optimized
cargo build --release

The resulting binary will be at target/release/aeonmi (Linux/macOS) or target\release\aeonmi.exe (Windows).

Run smoke

# show help
target/release/aeonmi --help

# open the Shard shell
target/release/aeonmi shard

Windows notes

  • If you see CRLF warnings from Git, consider adding a .gitattributes with:
    * text=auto eol=lf
    or set git config core.autocrlf true.
  • Terminal: Use Windows Terminal or PowerShell with a Unicode font.
Clone this wiki locally