Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,17 @@ jobs:
node-version: 20
- run: node packages/create-dql-app/test/smoke.mjs

# --- docs build + internal link check ---
# --- docs: verify every relative markdown link under docs/ resolves ---
docs:
name: docs build + link check
name: docs link check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: node apps/docs/scripts/link-check.mjs
- run: pnpm -F @duckcodeailabs/docs build
- name: check relative links in docs/
run: node scripts/check-doc-links.mjs

# --- dql fmt --check across the repo ---
# Gates canonical .dql serialization — catches whitespace churn before
Expand All @@ -70,7 +67,7 @@ jobs:
node-version: 20
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm -F @duckcodeailabs/dql-cli build
- run: pnpm build
- name: dql fmt --check
run: |
set -e
Expand All @@ -85,7 +82,7 @@ jobs:
done

# --- 4,000-model stress test (perf gate) ---
# Gates: cold <30s, warm <2s. See docs.duckcode.ai/contribute/testing.
# Gates: cold <30s, warm <2s. See docs/contribute/testing.md.
stress-test:
name: stress (4k-model synthetic project)
runs-on: ubuntu-latest
Expand Down
54 changes: 0 additions & 54 deletions .github/workflows/deploy-docs.yml

This file was deleted.

13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,15 @@ Already have a **dbt project**? Run `create-dql-app` next to it — the scaffold

## Documentation

**📘 [docs.duckcode.ai](https://docs.duckcode.ai)** — the single source of truth.
All docs live in [`docs/`](./docs/) — plain markdown, rendered on github.com.
Start with [docs/README.md](./docs/README.md).

Quick links:

- [Install](https://docs.duckcode.ai/get-started/install) · [Quickstart](https://docs.duckcode.ai/get-started/quickstart) · [Concepts](https://docs.duckcode.ai/get-started/concepts)
- [Jaffle Shop walkthrough](https://docs.duckcode.ai/guides/jaffle-shop) · [Import dbt](https://docs.duckcode.ai/guides/import-dbt) · [Author a block](https://docs.duckcode.ai/guides/authoring-blocks)
- [CLI reference](https://docs.duckcode.ai/reference/cli) · [Language reference](https://docs.duckcode.ai/reference/language) · [Connectors](https://docs.duckcode.ai/reference/connectors)
- [Architecture](https://docs.duckcode.ai/architecture/overview) · [Contributing](https://docs.duckcode.ai/contribute/repo-layout)
- [Quickstart](./docs/01-quickstart.md) · [Concepts](./docs/02-concepts.md) · [Install](./docs/03-install.md)
- [Jaffle Shop walkthrough](./docs/guides/jaffle-shop.md) · [Import dbt](./docs/guides/import-dbt.md) · [Author a block](./docs/guides/authoring-blocks.md)
- [CLI reference](./docs/reference/cli.md) · [Language reference](./docs/reference/language.md) · [Connectors](./docs/reference/connectors.md)
- [Architecture](./docs/architecture/overview.md) · [Contributing](./docs/contribute/repo-layout.md)

## What's in the box

Expand All @@ -49,7 +50,7 @@ Natural-language / agentic block generation, MCP runtime, hosted workspaces, RBA

## Contributing

See [CONTRIBUTING.md](./CONTRIBUTING.md) and the [contribute section](https://docs.duckcode.ai/contribute/repo-layout) of the docs site. Bugs and feature requests: [open an issue](https://github.com/duckcode-ai/dql/issues).
See [CONTRIBUTING.md](./CONTRIBUTING.md) and [docs/contribute/repo-layout.md](./docs/contribute/repo-layout.md). Bugs and feature requests: [open an issue](https://github.com/duckcode-ai/dql/issues).

## License

Expand Down
1 change: 1 addition & 0 deletions apps/desktop/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
src-tauri/target/
src-tauri/Cargo.lock
src-tauri/gen/
2 changes: 1 addition & 1 deletion apps/desktop/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ pnpm -F @duckcodeailabs/desktop build
| Linux | `.deb`, `.AppImage`, `.rpm` |
| Windows | `.msi`, `.exe` (code-signed) |

See [docs.duckcode.ai/get-started/install](https://docs.duckcode.ai/get-started/install/).
See [docs/03-install.md](../../docs/03-install.md).
6 changes: 5 additions & 1 deletion apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@
"description": "Tauri desktop wrapper for the DQL notebook + CLI sidecar.",
"scripts": {
"dev": "tauri dev",
"build": "tauri build",
"build": "echo 'skipping tauri build — use release-desktop workflow'",
"build:tauri": "tauri build",
"tauri": "tauri"
},
"dependencies": {
"@duckcodeailabs/dql-notebook-app": "workspace:*"
},
"devDependencies": {
"@tauri-apps/cli": "2.1.0"
}
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"identifier": "ai.duckcode.dql",
"build": {
"beforeDevCommand": "pnpm -F @duckcodeailabs/dql-notebook-app dev",
"beforeBuildCommand": "pnpm -F @duckcodeailabs/dql-notebook-app build",
"beforeBuildCommand": "",
"devUrl": "http://localhost:5173",
"frontendDist": "../../dql-notebook/dist"
},
Expand Down
6 changes: 0 additions & 6 deletions apps/docs/.gitignore

This file was deleted.

41 changes: 0 additions & 41 deletions apps/docs/README.md

This file was deleted.

15 changes: 0 additions & 15 deletions apps/docs/next.config.mjs

This file was deleted.

24 changes: 0 additions & 24 deletions apps/docs/package.json

This file was deleted.

13 changes: 0 additions & 13 deletions apps/docs/pages/_meta.json

This file was deleted.

7 changes: 0 additions & 7 deletions apps/docs/pages/architecture/_meta.json

This file was deleted.

5 changes: 0 additions & 5 deletions apps/docs/pages/contribute/_meta.json

This file was deleted.

5 changes: 0 additions & 5 deletions apps/docs/pages/get-started/_meta.json

This file was deleted.

10 changes: 0 additions & 10 deletions apps/docs/pages/guides/_meta.json

This file was deleted.

25 changes: 0 additions & 25 deletions apps/docs/pages/guides/index.mdx

This file was deleted.

42 changes: 0 additions & 42 deletions apps/docs/pages/index.mdx

This file was deleted.

9 changes: 0 additions & 9 deletions apps/docs/pages/reference/_meta.json

This file was deleted.

Loading
Loading