### Development Commands Source: https://github.com/mahiatlinux/aerollm/blob/main/README.md Standard npm commands for installing dependencies, running the development server, and building the application. Includes commands for the Tauri backend. ```bash npm install npm run tauri dev # run the app (needs the bundled runtime for inference) npm run build # tsc + vite build cd src-tauri && cargo build ``` -------------------------------- ### Build Release DMG Source: https://github.com/mahiatlinux/aerollm/blob/main/README.md Scripts to build a release version of the AeroLLM application and its DMG installer. The `--rebuild-runtime` flag forces a rebuild of the CPython and MLX components. ```bash scripts/build-release.sh # uses the existing runtime if present scripts/build-release.sh --rebuild-runtime # rebuild CPython and mlx-lm first ``` -------------------------------- ### Check Bundled Runtime Source: https://github.com/mahiatlinux/aerollm/blob/main/README.md A script to verify the bundled runtime by downloading a small model and performing a single text completion. ```bash scripts/spike.sh checks the bundled runtime by downloading a small model and running one completion. ``` -------------------------------- ### Bypass macOS Quarantine Source: https://github.com/mahiatlinux/aerollm/blob/main/README.md Use this command in Terminal to bypass macOS Gatekeeper's quarantine attribute for the AeroLLM application, allowing it to open without right-clicking. ```bash xattr -dr com.apple.quarantine /Applications/AeroLLM.app ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.