Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ Forest is a Rust implementation of a Filecoin node that can transfer FIL, host a

```bash
# Install Forest binaries with release profile (recommended)
mise install
mise run install

# Install with different profiles
mise install quick # Faster build, less optimization
mise install release-lto-fat # Maximum optimization (slower build)
mise install dev # Debug build
mise run install quick # Faster build, less optimization
mise run install release-lto-fat # Maximum optimization (slower build)
mise run install dev # Debug build

# Install slim version (minimal features)
mise install --slim
mise run install --slim

# Build without installing
cargo build --release
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ git clone --recursive https://github.com/chainsafe/forest
cd forest

# Install binary to $HOME/.cargo/bin
mise install
mise run install

# Run the node on mainnet
forest
Expand Down
Loading