FLOMIS·MA

RS1 · Relay-as-a-Service

Zero persistence.
By design.

WebSocket relay with no disk, no database, and no Redis in the hot path. ESLint, strace CI, and readonly containers enforce what marketing cannot fake.

1,000

free sessions/mo

< 1ms

relay latency

0 bytes

stored server-side

relay-client

Revenue streams

Five products. One platform thesis.

Relay, templates, managed hosting, ledger primitives, and a public HTTP API — each priced for builders who want infrastructure, not another dashboard framework.

RS1

Relay-as-a-Service

Zero-persistence WebSocket relay

Authenticate with an API key, publish to rooms, subscribe in real time. No disk, no database in the relay path — enforced by ESLint, CI, and container policy.

  • Usage-metered tiers
  • HMAC API keys with rotation
  • Sub-ms regional latency
Explore →

RS2

Developer templates

Production starters on Gumroad

Multi-tenant SaaS, settlement ledger, relay starter, WebRTC signaling, AI backend patterns, war-room dashboard, and portfolio engine — buy once, own the code.

  • OpenAPI-aligned examples
  • Documentation-complete
  • No recurring license
Explore →

RS3

Managed hosting

We run the portal stack for you

Growth through Enterprise tiers with relay sizing, AI integrations, settlement ledger options, audit exports, and SLA-backed support.

  • Gemini + vector search options
  • SOC2-adjacent audit trail
  • Dedicated paths at Enterprise
Explore →

RS4

Settlement & ledger

Double-entry primitives via API

Immutable ledger entries, escrow flows, batch settlement, and reconciliation — exposed as typed HTTP calls against the portal.

  • Idempotent writes
  • RFC9457-style errors
  • Redacted audit logging
Explore →

RS5

Public HTTP API

OpenAPI 3.1 + npm types

Relay rooms, ledger events, tenant metadata, and operational hooks as direct API calls. Generate clients from the published spec.

  • @flomisma/api-types on npm
  • YAML served from portal
  • Bearer API keys
Explore →

RS1 · Relay

Deep dive

The relay only forwards frames. Quotas live in memory for the billing window, then roll up to the portal ledger — never the message body.

  • ✓ ESLint rule bans fs, Prisma, Redis imports in relay binary
  • ✓ GitHub Actions strace CI — fails if write syscalls detected
  • ✓ readonlyRootFilesystem on ECS Fargate container
  • ✓ Separate deployable — relay has no database connection
Read relay architecture →

Relay tiers

TierPriceSessions/moConcurrent
DeveloperFree1,000100Start free →
Startup$49/mo25,000500Get started →
GrowthContact150,0002,500Contact us →
ScaleContactUnlimited10,000Contact us →
EnterpriseCustomDedicatedSLATalk to us →

RS2 · Templates

Templates that save 4–6 weeks.

Each template is documentation-complete. No support obligation. Buy once, own forever.

infrastructure

Next.js Multi-Tenant SaaS Starter

Full multi-tenant architecture. Ship in days, not months.

Production-ready Next.js 15 multi-tenant SaaS with Supabase, Prisma, Row-Level Security, per-tenant branding, and admin dashboard. The foundation that took 6 months of sprints to build — yours in one purchase.

finance

Settlement & Ledger Starter

Double-entry ledger, escrow, and audit trail. Production-ready.

Immutable double-entry ledger with escrow workflows, batch settlement, audit trail, and reconciliation. Prisma + Postgres. Drop into any Next.js app.

relayinfrastructure

Zero-Persistence Relay Starter

WebSocket relay that never touches disk. Stateless by design.

The complete relay service from apps/relay/ — standalone, documented, and ready to deploy. Includes quota manager, room manager, API key rotation, and metrics server.

relayinfrastructure

WebRTC Signaling Starter

Peer-to-peer signaling without persisting SDP bodies.

Complete WebRTC signaling server with TURN credential brokering. Privacy-first — SDP and ICE candidates are relayed, never stored. TypeScript strict, Node.js.

aiinfrastructure

AI-Native Backend Starter

Structured AI output, tool-use orchestration, vector search.

Production AI backend patterns: structured Anthropic output, LangChain orchestration, ChromaDB semantic search, and tenant-scoped vector collections. Next.js 15 App Router.

monitoring

Operational War-Room Dashboard

Admin forensics and monitoring. Connects to any Supabase backend.

Real-time operations dashboard with system health monitoring, SSE notifications, audit log viewer, and revenue charts. Wires to any Supabase + Prisma backend.

finance

Crypto Portfolio Engine Starter

Allocation engine, drift detection, composite scoring.

The portfolio intelligence engine from Pemabu — allocation targets, drift detection, composite scoring, and rebalancing recommendations. Multi-asset class support including crypto.

RS3 · Managed hosting

We operate the portal stack.

Growth through Enterprise tiers with relay sizing, AI integrations, settlement ledger options, audit exports, and SLA-backed support.

TierPriceRelay tierAI integrationSettlement ledgerAudit trailSLASupport
Growth$500/moStartupGemini + ChromaFull99.5%Email
ScaleContactGrowthYes + priorityYesFull + export99.9%Email + SLA
EnterpriseCustomCustomDedicatedYesFull + export99.95%Dedicated

RS5 · HTTP API

Primitives, not platforms.

Settlement, relay, and multi-tenant management as direct API calls. Usage-metered. OpenAPI 3.1. TypeScript types on npm.

  • ✓ Bearer API keys with tenant isolation
  • ✓ RFC9457-style problem+json errors
  • ✓ Idempotent ledger writes
curl
1# Create an ephemeral relay room
2curl -X POST https://api.flomisma.com/v1/relay/rooms \
3 -H "Authorization: Bearer fmr_your_key" \
4 -H "Content-Type: application/json" \
5 -d '{"tier": "startup"}'
6
7# Response
8{
9 "roomId": "room_abc123",
10 "joinToken": "jt_xyz...",
11 "expiresAt": "2026-06-01T00:00:00Z"
12}