VeloIQ™ — Full-Stack Framework for Data-Driven Apps
Open-Core Framework · MIT License · FastAPI + React
Build Data-Driven Apps in a<br>Fraction of the Time
Define your data models once in Python. VeloIQ generates the REST API,<br>the SQLAdmin back-office, and the full React CRUD frontend automatically.
Get Started Free →
See the UI →
See It in 5 Minutes
Build a Task Manager →
See it in action
Dashboard — Models Grid
Built on trusted open-source foundations
FastAPI<br>SQLModel<br>React<br>Refine<br>Ant Design<br>Alembic
What you get<br>Everything you need, nothing you don't
VeloIQ handles the scaffolding so you spend your time on the logic that makes your application unique.
Backend, Done
FastAPI application factory with CORS, JWT auth middleware, and RBAC built in.<br>Automatic CRUD routers, module auto-loading, SQLAdmin back-office at<br>/admin/,<br>and Alembic migrations — all wired up from one function call.
🖥️
Frontend, Included
@veloiq/ui renders<br>schema-driven CRUD pages with side panels, Miller columns tree view,<br>a relations explorer graph, auto-generated analysis charts, bulk actions,<br>dark mode, and global search — with zero boilerplate.
🔓
Your Code, Always
VeloIQ is a pro-code framework , not a black box.<br>Every FastAPI endpoint and React component is plain Python and TypeScript<br>you own, read, and extend. The generated code stays yours.
Two models. Full stack.
Define your models.<br>Everything else is generated.
Drop a models.py in any module folder.<br>VeloIQ auto-generates the REST API, the admin views, and the TypeScript schema<br>for the React frontend — including the relationship between your models.
✓ CRUD endpoints for both models
✓ React pages with side panels and relation explorer
✓ SQLAdmin back-office with the relation wired up
✓ TypeScript types auto-generated from Python models
app/modules/projects/models.py
from typing import List, Optional<br>from sqlmodel import Field<br>from veloiq_framework import TimestampedModel, jm_relationship
class TeamMember(TimestampedModel, table=True):<br>__tablename__ = "team_member"<br>name: str<br>email: str<br>role: str = "member"<br>projects: List["Project"] = jm_relationship(<br>back_populates="owner"
class Project(TimestampedModel, table=True):<br>__tablename__ = "project"<br>name: str<br>status: str = "active"<br>owner_id: Optional[int] = Field(<br>default=None, foreign_key="team_member.id"<br>owner: Optional["TeamMember"] = jm_relationship(<br>back_populates="projects"
Capabilities<br>Access control and UI that think ahead
Production-grade features included in the free tier — not gated behind a paid plan.
🔐 Access Control
Three-layer RBAC
Global role permissions → per-model exceptions → per-field exceptions. Configurable at runtime through the admin UI.
ReBAC row-level filtering
Users see only the rows they own or belong to. Relationship traversal via rebac_subquery() with cycle detection.
JWT authentication
Built-in login endpoint, token refresh, and middleware. No third-party auth service required.
User / Role / Tenant management
Full React UI for managing users, roles, and tenants. Comes pre-wired with the framework.
Multi-database support
PostgreSQL, MySQL, SQLite, or any SQLAlchemy-compatible database. Switch with one environment variable.
🖥️ Intelligent UI
Side panels
Click any list row to open a detail panel alongside the list. Drag to resize, minimize, maximize, or pop out to full page.
Miller columns tree view
Hierarchical parent/child data renders as an interactive multi-column browser. Auto-detected from self-referential model relationships.
Relations explorer
Visual graph of all records connected to any entity. Click any node to navigate directly to it.
Analysis charts
Distribution and summary charts appear automatically on relation tables. Toggle per view, preference saved per user.
Bulk actions, column config, dark mode
Select rows for bulk edit, delete, or CSV export. Show/hide/reorder columns. Light and dark mode with keyboard shortcuts.
No-code UI, pro-code control<br>See the interface you didn't have to build
Tables, galleries, crosstabs, trees, master-detail panels, forms, and 18 chart types — all generated from your data models, in dark and light mode.
Explore the UI Showcase →
Five-minute demo<br>See a working app before writing a line of code
Clone the repo and run one script. A full task-manager app — with authentication,<br>RBAC, and a React UI — starts in your browser in under five minutes.
$ git clone https://github.com/cesarlugos1s/veloiq.git<br>$ cd veloiq<br>$ bash samples/task-manager/quickstart.sh
Works on Linux, macOS, and Windows (PowerShell or WSL). No PostgreSQL needed — uses bundled SQLite.
View on GitHub →<br>Install from PyPI
Open-Core<br>Free forever. Pro when you need it.
The full framework core is MIT licensed. Build and ship production-ready applications at no cost.<br>Pro adds AI, WYSIWYG editing, SSO, and enterprise governance.
See Pricing →