create-dql-app 1.6.2 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-dql-app",
3
- "version": "1.6.2",
3
+ "version": "1.6.4",
4
4
  "description": "Scaffold a new DQL project. Run with: npx create-dql-app <name>",
5
5
  "license": "MIT",
6
6
  "author": "DuckCode AI Labs",
@@ -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
- The default connection is in-memory DuckDB, so dropping a CSV into the project
23
- and querying it with `read_csv_auto('./file.csv')` works with zero setup.
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
@@ -1,11 +1,5 @@
1
1
  {
2
2
  "project": "{{PROJECT_NAME}}",
3
- "connections": {
4
- "default": {
5
- "driver": "duckdb",
6
- "filepath": ":memory:"
7
- }
8
- },
9
3
  "semanticLayer": {
10
4
  "provider": "dql",
11
5
  "path": "semantic-layer"
@@ -17,7 +17,7 @@
17
17
  "id": "starter_query",
18
18
  "type": "sql",
19
19
  "title": "Starter Query",
20
- "source": "-- If using DuckDB, local CSV, Parquet, and JSON files work with zero setup\n-- Example: SELECT * FROM read_csv_auto('./data/my_file.csv') LIMIT 10;\nselect 1 as customer_count"
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 query local files with DuckDB.\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."
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
  }
@@ -11,7 +11,7 @@
11
11
  "validate": "dql validate"
12
12
  },
13
13
  "devDependencies": {
14
- "@duckcodeailabs/dql-cli": "^1.6.2"
14
+ "@duckcodeailabs/dql-cli": "^1.6.4"
15
15
  },
16
16
  "engines": {
17
17
  "node": ">=20 <23"