create-dql-app 1.6.3 → 1.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -19,8 +19,9 @@ connects technical lineage with business lineage.
|
|
|
19
19
|
|
|
20
20
|
Edit `dql.config.json` — DQL ships 15 drivers out of the box:
|
|
21
21
|
[docs/reference/connectors.md](https://github.com/duckcode-ai/dql/blob/main/docs/reference/connectors.md).
|
|
22
|
-
|
|
23
|
-
and
|
|
22
|
+
Add your warehouse connection in the notebook or config. For local files, add a
|
|
23
|
+
DuckDB/file connection and query CSV or Parquet data with functions such as
|
|
24
|
+
`read_csv_auto('./file.csv')`.
|
|
24
25
|
|
|
25
26
|
```bash
|
|
26
27
|
npm install
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"id": "starter_query",
|
|
18
18
|
"type": "sql",
|
|
19
19
|
"title": "Starter Query",
|
|
20
|
-
"source": "--
|
|
20
|
+
"source": "-- Connect a warehouse or add a local DuckDB/file connection, then query your source tables here\n-- Example: SELECT * FROM analytics.customers LIMIT 10;\nselect 1 as customer_count"
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
23
|
"id": "domain_layer",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"id": "next_steps",
|
|
30
30
|
"type": "markdown",
|
|
31
31
|
"title": "Next Steps",
|
|
32
|
-
"source": "## Next steps\n\n1. Connect a warehouse or
|
|
32
|
+
"source": "## Next steps\n\n1. Connect a warehouse or add a local DuckDB/file connection.\n2. Save repeated SQL as DQL blocks under `blocks/`.\n3. Add shared vocabulary under `terms/`.\n4. Compose business outcomes under `business-views/`.\n5. Run `dql compile .` and open Lineage to inspect technical and business paths."
|
|
33
33
|
}
|
|
34
34
|
]
|
|
35
35
|
}
|