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

推荐订阅源

U
Unit 42
Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
I
InfoQ
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
量子位
博客园 - 叶小钗
月光博客
月光博客
IT之家
IT之家
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
VeloIQ™ — Full-Stack Framework for Data-Driven Apps
cesarlugos1s · 2026-06-12 · via Hacker News: 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 →