Skip to content

Enterprise Getting Started

Quick start guide for StrataRouter Enterprise features.

Prerequisites

  • StrataRouter Core and Runtime installed
  • PostgreSQL 12+
  • Enterprise license key

Installation

pip install stratarouter-enterprise

Configuration

use stratarouter_enterprise::EnterpriseConfig;

let config = EnterpriseConfig {
    database_url: "postgresql://localhost/stratarouter",
    license_key: "your-license-key",
    enable_multi_tenancy: true,
    enable_rbac: true,
    enable_transaction_log: true,
};

Features

Multi-Tenancy

See Multi-Tenancy

Authentication

See Authentication

RBAC

See RBAC

Transaction Log

See Transaction Log

See Also