Installation

This guide will help you install RouteMQ and its dependencies.

Prerequisites

  • Python 3.8 or higher

  • Git (for cloning the repository)

Installation Steps

1. Clone the Repository

git clone https://github.com/ardzz/RouteMQ.git
cd RouteMQ

2. Install UV Package Manager

If you don't have uv installed:

# On Unix/macOS
curl -LsSf https://astral.sh/uv/install.sh | sh

# On Windows (PowerShell)
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"

3. Install Dependencies

Installation Options

Basic Installation

For basic MQTT functionality without Redis or MySQL:

Full Installation

For all features including Redis and MySQL support:

Development Installation

For development with testing and linting tools:

Verify Installation

Run the following command to verify the installation:

You should see the RouteMQ help message with available commands.

Next Steps

Last updated