Getting Started¶
Welcome to Waremax! This section will help you get up and running with warehouse robot simulation.
Overview¶
Getting started with Waremax involves four steps:
- Installation - Install Waremax on your system
- Quick Start - Run your first commands in 5 minutes
- Your First Simulation - Create and run a custom scenario
- Understanding Output - Interpret simulation results
Prerequisites¶
Before installing Waremax, ensure you have:
- Rust 1.70+ - Waremax is built with Rust
- Cargo - Rust's package manager (included with Rust)
- Git - For cloning the repository
Installing Rust¶
If you don't have Rust installed:
# Install Rust via rustup
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Verify installation
rustc --version
cargo --version
Quick Overview¶
Waremax provides a CLI for running warehouse simulations:
# Run a quick demo
waremax demo
# List available presets
waremax list-presets
# Generate a scenario
waremax generate --preset standard --output scenario.yaml
# Run a simulation
waremax run --scenario scenario.yaml
# Validate a scenario
waremax validate --scenario scenario.yaml
What You'll Learn¶
By the end of this section, you'll be able to:
- Install and verify Waremax installation
- Run demo simulations
- Create scenario configuration files
- Execute simulations and interpret results
- Export simulation data for analysis
Next Steps¶
Start with the Installation Guide to set up Waremax on your system.