DLH Logo
Launching Soon: The Modern dbt IDE

The dbt IDE That Moves as Fast as You Do

DbDeux gives your data team a blazing-fast development environment for dbt. Atlas AI Co-pilot, Atlas Catalog, governed Metrics, Data Products, and Slimmer CI that's 4-8x faster than dbt Cloud. Everything you need to ship trusted, documented data.

SOC 2 CompliantEnterprise SSOAtlas AI + Catalog
stg_orders.sql
schema.yml
1-- models/staging/stg_orders.sql
2WITH source AS (
3 SELECT * FROM {{ ref("raw_orders") }}
4),
5
6renamed AS (
7 SELECT
8 id AS order_id,
9 user_id AS customer_id,
10 order_date,
11 status AS order_status
12 FROM source
13)
14
15SELECT * FROM renamed
Connected: SnowflakeUTF-8
SQLLn 15, Col 24
Slimmer CI passed
3 models · 1.2s
Atlas: Suggest optimization
92% documented
5 metrics validated

Everything Your Data Team Needs. Nothing They Don't.

DbDeux replaces a patchwork of tools with one cohesive platform, designed from the ground up for modern analytics engineering.

Cloud IDE for Analytics

Full-featured editor with syntax highlighting, auto-complete, multi-tab editing, worksheets, and chart view.

stg_orders.sqlschema.yml
1 -- staging model
2 SELECT
3 id, user_id, status
4 FROM {{ ref('raw') }}

Atlas AI Co-pilot

Warehouse-grounded AI. Reads your schema, models, metrics, and data products before answering.

How is churn_rate calculated?
churn_rate = lost / total on customer_retention

Atlas Catalog

Documentation for every node type. Coverage scorecards, column-level lineage, AI doc generation.

fct_orders
92%
raw_payments
78%
total_revenue
100%

Atlas Metrics

Semantic metric definitions with live SQL preview across 7 dialects and branch-level diffing.

total_revenue
SUM(order_items.amount)

Atlas Data Products

Bundle models, metrics, exposures into governed products with SLA tiers and ownership.

Revenue AnalyticsProduction
Gold SLA1h fresh
3 Metrics2 Models

Lineage & ERD Viewer

Interactive DAG with 10+ layouts, click-to-trace, and PNG/PDF export.

Sources
raw_orders
raw_payments
raw_customers
Staging
stg_orders
stg_payments
stg_customers
Intermediate
int_order_payments
Marts
fct_orders
dim_customers

Database Explorer

Live schema tree with drag-and-drop, auto-introspection, and brand icons for 8 warehouses.

ANALYTICS
orders
customers
products

Native Git Workflows

Branch, commit, push, and create pull requests without leaving the IDE.

Worksheets & Charts

SQL worksheets with inline chart visualizations. Explore data and share results instantly.

Shared Workspaces

Private, team, or org-wide workspaces with one-click project copy.

Share Links

Tokenized links for catalogs and data products. No login required for stakeholders.

Scheduled Jobs

dbt builds on schedule or from merges. Branch-aware execution with alerting.

Enterprise Security

SSO, RBAC, encrypted vault, audit logs, and SOC 2 compliance.

The Atlas Suite

AI, Catalog, Metrics & Data Products

Four integrated products that turn your dbt project into a governed, discoverable, AI-powered data platform. All built in.

Atlas AI

Warehouse-Grounded Co-pilot

Reads your schema, models, and metrics
Generates dbt-specific SQL and YAML
Metric-grounded answers, not guesses
No API keys required, ready out of the box
Atlas AIGrounded
SchemaModelsMetricsProductsLineage
How is churn_rate calculated?
Based on your Atlas Metrics, churn_rate is defined as lost_customers / total_customers on the customer_retention semantic model.
Generated SQL
SELECT lost_customers /
    total_customers AS churn_rate
FROM customer_retention
Generating follow-up...
Full Development Environment

A True IDE, Not Just an Editor

File explorer, query runner, terminal, database browser, worksheets: everything integrated into a single, responsive workspace.

stg_orders.sql
schema.yml
1-- models/staging/stg_orders.sql
2WITH source AS (
3  SELECT * FROM {{ ref('raw_orders') }}
4),
5
6renamed AS (
7  SELECT
8    id          AS order_id,
9    user_id     AS customer_id,
10    order_date,
11    status      AS order_status
12  FROM source
13)
order_idcustomer_idorder_datestatus
112024-01-15completed
232024-01-15shipped
362024-01-16completed
422024-01-16returned
582024-01-17completed
Slimmer CI v2.0

CI That's 4-8x FasterThan dbt Cloud

Stop waiting. Slimmer CI with warm-pool runners delivers sub-second warm-path builds. Your PR checks finish before you switch tabs.

Performance Benchmarks

DbDeuxdbt Cloud
Cold Start4.2s vs 32s
7.6× faster
Warm Path (Slimmer CI)1.2s vs 8.5s
7.1× faster
Schema Diff0.8s vs 6s
7.5× faster
Full Project Build12s vs 45s
3.8× faster
×
Faster warm path
s
Median CI time
%
Less compute cost
Zero
Cold starts

Warm-Pool Runners

Pre-warmed containers keep your CI pipeline hot. No more waiting for cold starts. Runs begin in milliseconds, not minutes.

Intelligent Schema Diff

Only rebuild what changed. DbDeux compares your PR against the production manifest and runs only the affected models.

Merge Triggers

Automatically run CI on pull requests, merges, or schedules. Configurable per-project with branch-aware execution.

Per-Project Gates

Enable or disable Slimmer CI per project. Fine-grained control so every team gets the workflow they need.

Lineage & ERD

See Every Model Relationshipat a Glance

Interactive lineage graphs and entity-relationship diagrams built right into your IDE. Trace data from source to dashboard without leaving DbDeux.

Model Lineage9 models
Search models...
SourceStagingIntermediateMart
raw_orders
raw_customers
raw_payments
stg_orders
stg_customers
stg_payments
int_order_payments
customers
orders
9 models · 9 edges · Hierarchical layout · Hover to explore
Live syncZoom: 100%

10+ Layout Algorithms

Hierarchical, force-directed, grid, spiral, circular, and more. Pick the layout that fits your project.

Interactive Exploration

Click any model to highlight its upstream and downstream dependencies. Filter, search, and zoom freely.

Multiple Schema Formats

Parse PostgreSQL, DBML, TBLS, SchemaRB, Django, and more. Your schema, your format.

Export Anywhere

Export your lineage diagrams as PNG or PDF with custom watermarks. Share with stakeholders in seconds.

Atlas AI Co-pilot

AI Grounded in Your Warehouse

Atlas reads your schema, models, governed metrics, and data products before answering. Every response is grounded in your actual code and data, not generic advice.

Schema & Tables
Live warehouse metadata
Atlas Metrics
Governed metric definitions
dbt Models
Refs, sources, macros
Data Products
SLAs, ownership, lineage

Ready to use out of the box. No API keys needed. Your code is never used for training.

AI Assistant
Claude Sonnet
How is total_revenue calculated in our project?
Based on your Atlas Metrics definitions, total_revenue is a SUM metric on fct_orders.amount, filtered to status = 'completed'. Here is the compiled SQL for Snowflake:
SELECT
  DATE_TRUNC('month', order_date) AS period,
  SUM(amount) AS total_revenue
FROM analytics.fct_orders
WHERE status = 'completed'
GROUP BY 1
ORDER BY 1
This metric is part of the Revenue Analytics data product (Gold SLA, refreshed hourly). Want me to add a test for this model?
Ask about your dbt project…

How DbDeux Stacks Up

Side-by-side with dbt Cloud and open-source tooling. See why teams are switching to DbDeux.

Feature
DbDeux
dbt Cloud
OSS Tools
Cloud IDE
Atlas AI Co-pilot
Atlas Catalog
Atlas Metrics
Atlas Data Products
Slimmer CI (Warm Pools)
Lineage & ERD Viewer
Schema Diff on PRs
Database Explorer
Shared Workspaces
Worksheets & Charts
Share Links (No Login)
Native Git Workflows
Scheduled Jobs
Multi-Database (8 Warehouses)
SSO / Auth0
Audit Logs
DbDeux leads in of 17 categories

Ready to Ship Faster?

Join the waitlist for early access to DbDeux, the development platform built for speed, collaboration, and modern analytics engineering. Be among the first teams to experience the difference.

No credit card required · Free trial available · Enterprise plans with custom SLAs

Atlas AI Co-pilotAtlas CatalogAtlas MetricsData ProductsSlimmer CILineage & ERDDatabase ExplorerShared WorkspacesShare Links