DEVELOPERS

Connect. Query. Build.
Sixty seconds, no orchestrator.

Sign up free, grab your connection string, and point your existing Postgres tooling at it. Run a query. The whole getting-started flow is below.

QUICKSTART

Three steps. About a minute.

01

Create your database

Sign up free and you land in a managed workspace that scales to zero. Copy your connection string from the console — pgwire host, port, and credentials, ready to paste.

open https://console.cloud.fluxos.run/signup
02

Connect with psql

Anything that connects to Postgres connects to FluxOS without code changes. Paste the connection string from your console.

psql "$FLUXOS_URL"
03

Write Flux or SQL

SQL works directly. Or use Flux — pipe-based, composable, reads top-to-bottom — for everything from ad-hoc analytics to streaming MVs.

from orders
| where status == "paid"
| take 10;
PROTOCOLS

Connect three ways.

Use what fits your tool. All three protocols hit the same engine — same data, same auth, same query language.

P

pgwire (port 5432)

PostgreSQL wire protocol. Use psql, ORMs, BI tools, drivers. TLS is enforced on every Cloud connection.

psql "$FLUXOS_URL"
H

HTTP / JSON (HTTPS)

REST-ish JSON API. Auth via Bearer token from /api/auth/token. Good for web apps, webhooks, scripts.

curl -X POST \
  -H "Authorization: Bearer $T" \
  -H "Content-Type: application/json" \
  -d '{"query":"from orders | take 10"}' \
  "$FLUXOS_HTTP/api/query"
D

Workbench

Full browser UI in your workspace. Query editor, schema browser, MV manager, connector wizards, dashboards, and notebooks.

open https://console.cloud.fluxos.run
WORKS WITH

Your existing stack just connects.

No driver shims, no custom adapters. The Postgres protocol means everything you already use keeps working.

Clients

psql · pgcli · DBeaver · TablePlus · DataGrip · Postico

ORMs

Prisma · Drizzle · SQLAlchemy · TypeORM · Sequelize · Diesel · sqlx

Languages

Node.js (pg) · Python (psycopg) · Rust (sqlx) · Go (lib/pq) · Java (JDBC) · Ruby (pg)

BI & analytics

Metabase · Superset · Grafana · Looker · Hex · Mode

Migration tools

Liquibase · Flyway · Alembic · Goose · golang-migrate

Streaming sources

Apache Kafka · AWS Kinesis · Confluent Cloud · Redpanda · MSK

Read the docs. Or jump in.

Full reference for Flux, the HTTP API, configuration, and operations lives in the docs. Or sign up free and start querying in your workspace.