惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
F
Fortinet All Blogs
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 叶小钗
爱范儿
爱范儿
美团技术团队
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
博客园_首页
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
V
Visual Studio Blog
Jina AI
Jina AI
博客园 - Franky
量子位
MongoDB | Blog
MongoDB | Blog
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
aimingoo的专栏
aimingoo的专栏
M
MIT News - Artificial intelligence

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
VeloIQ™ — Full-Stack Framework for Data-Driven Apps
cesarlugos1s · 2026-06-12 · via Show HN

Open-Core Framework  ·  MIT License  ·  FastAPI + React

Build Data-Driven Apps in a
Fraction of the Time

Define your data models once in Python. VeloIQ generates the REST API, the SQLAdmin back-office, and the full React CRUD frontend automatically.

See it in action

VeloIQ task manager — animated demo

Dashboard — Models Grid

VeloIQ task manager sample app — dashboard models grid with projects and tasks

Built on trusted open-source foundations

FastAPI · SQLModel · React · Refine · Ant Design · Alembic

Backend, Done

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.

🖥️

Frontend, Included

@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.

🔓

Your Code, Always

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.

Two models. Full stack.

Define your models.
Everything else is generated.

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.

  • 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
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"
    )

🔐 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.

Five-minute demo

See a working app before writing a line of code

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.


Open-Core

Free forever. Pro when you need it.

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 →