Running Locally¶
Using .NET Aspire¶
The recommended way to run Cargonerds locally is with .NET Aspire:
```bash cd src/Cargonerds.AppHost dotnet run ```
This automatically: - Starts infrastructure (SQL Server, Redis, RabbitMQ) - Runs database migrations - Starts all services - Opens the Aspire dashboard
Using Docker Compose¶
Alternatively, use Docker Compose for infrastructure:
```bash cd etc/docker docker-compose up -d ```
Then start services manually.
For more details, see the Quick Start Guide.