Define your data models once in Python. VeloIQ generates the REST API, the SQLAdmin back-office, and the full React CRUD frontend automatically.
From empty project to running app — no React written
Dashboard — Models Grid
VeloIQ handles the scaffolding so you spend your time on the logic that makes your application unique.
FastAPI application factory with CORS, JWT auth middleware, and RBAC built in.
Automatic CRUD routers, module auto-loading, SQLAdmin back-office at
/admin/,
and Alembic migrations — all wired up from one function call.
@veloiq/ui renders
schema-driven CRUD pages with side panels, Miller columns tree view,
a relations explorer graph, auto-generated analysis charts, bulk actions,
dark mode, and global search — with zero boilerplate.
VeloIQ is a pro-code framework, not a black box. Every FastAPI endpoint and React component is plain Python and TypeScript you own, read, and extend. The generated code stays yours.
Drop a models.py in any module folder.
VeloIQ auto-generates the REST API, the admin views, and the TypeScript schema
for the React frontend — including the relationship between your models.
from typing import List, Optional from sqlmodel import Field from veloiq_framework import TimestampedModel, jm_relationship class TeamMember(TimestampedModel, table=True): __tablename__ = "team_member" name: str email: str role: str = "member" projects: List["Project"] = jm_relationship( back_populates="owner" ) class Project(TimestampedModel, table=True): __tablename__ = "project" name: str status: str = "active" owner_id: Optional[int] = Field( default=None, foreign_key="team_member.id" ) owner: Optional["TeamMember"] = jm_relationship( back_populates="projects" )
Production-grade features included in the free tier — not gated behind a paid plan.
rebac_subquery() with cycle detection.Clone the repo and run one script. A full task-manager app — with authentication, RBAC, and a React UI — starts in your browser in under five minutes.
$ git clone https://github.com/cesarlugos1s/veloiq.git $ cd veloiq $ bash samples/task-manager/quickstart.sh
Works on Linux, macOS, and Windows (PowerShell or WSL). No PostgreSQL needed — uses bundled SQLite.
The full framework core is MIT licensed. Build and ship production-ready applications at no cost. Pro adds AI, WYSIWYG editing, SSO, and enterprise governance.
See Pricing →VeloIQ powers production applications that run in commercial businesses today. Deploy a fully featured solution without starting from scratch.
A ready-to-use business optimization engine for Retail, Wholesale, and Manufacturing. JuiceMantics delivers end-to-end optimization across the entire commercial P&L — Supply Chain Optimization, Pricing, Promotion Optimization, Assortment Variety Optimization, and Market Revenue Growth — all in a single platform that installs on your data with no code required.