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
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.
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
Anything that connects to Postgres connects to FluxOS without code changes. Paste the connection string from your console.
psql "$FLUXOS_URL"
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;
Use what fits your tool. All three protocols hit the same engine — same data, same auth, same query language.
PostgreSQL wire protocol. Use psql, ORMs, BI tools, drivers. TLS is enforced on every Cloud connection.
psql "$FLUXOS_URL"
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"
Full browser UI in your workspace. Query editor, schema browser, MV manager, connector wizards, dashboards, and notebooks.
open https://console.cloud.fluxos.run
No driver shims, no custom adapters. The Postgres protocol means everything you already use keeps working.
psql · pgcli · DBeaver · TablePlus · DataGrip · Postico
Prisma · Drizzle · SQLAlchemy · TypeORM · Sequelize · Diesel · sqlx
Node.js (pg) · Python (psycopg) · Rust (sqlx) · Go (lib/pq) · Java (JDBC) · Ruby (pg)
Metabase · Superset · Grafana · Looker · Hex · Mode
Liquibase · Flyway · Alembic · Goose · golang-migrate
Apache Kafka · AWS Kinesis · Confluent Cloud · Redpanda · MSK
Full reference for Flux, the HTTP API, configuration, and operations lives in the docs. Or sign up free and start querying in your workspace.