Installation
Regulus is developed from source. Build and run it with Cargo.
Requirements
git- Rust and Cargo (I recommended
rustup) pnpmif you want to run the docs site
Build the CLI
sh
cargo build -p compiler_cliThis builds the reggie and regulus binaries. Run the CLI through Cargo while developing:
sh
cargo run -q -p compiler_cli -- --helpRun checks
sh
cargo fmt
cargo test
cargo clippy --workspace --all-targetsDocumentation Site
Run the docs site:
sh
cd docs/website
pnpm install
pnpm docs:dev