
Loading...
Get up and running with DataChonk in under 5 minutes. Follow these steps to create your first dbt project.
After signing in, click New Project from your dashboard. Give your project a name and select your target warehouse type.
Navigate to the Data Sources tab and click Add Source. Enter your database credentials:
Click Test Connection to verify your credentials, then Save.
Once connected, click Start Scan to discover your database schema. DataChonk will:
Go to the Chonk Board tab and click Add Chonk. Start with a Source chonk:
Chonk will create properly formatted source YAML with descriptions, column definitions, and freshness tests.
When you're ready, click the Export button to download a complete dbt project including:
You can also use DataChonk from the command line for faster workflows:
# Install the CLI globally
npm install -g @datachonk/cli
# Or run directly with npx
npx @datachonk/cli init
# Scan a database
datachonk scan --type postgresql --host localhost --database mydb
# Generate a staging model
datachonk generate staging users
# Chat with the Brain
datachonk chat "Create a fact table for orders"