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
2 changes: 1 addition & 1 deletion content/examples/rag-chat/content.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Unlike the other templates, **this template is designed to be consumed via `data
- Writes `DATABRICKS_CONFIG_PROFILE` or `DATABRICKS_HOST` based on your Databricks CLI configuration.
- Drops you into a ready-to-run project directory named by `--name`.

This validates the [AppKit templates system](https://databricks.github.io/appkit/docs/development/templates) as a way to ship DevHub templates — see `appkit.plugins.json` and `.env.tmpl` in the template for how it works.
This validates the [AppKit templates system](/docs/appkit/v0/development/templates) as a way to ship DevHub templates — see `appkit.plugins.json` and `.env.tmpl` in the template for how it works.

### What to Adapt

Expand Down
2 changes: 1 addition & 1 deletion content/recipes/ai-chat-model-serving/content.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,4 +213,4 @@ Open the app URL while signed in to Databricks, send a message, and verify strea

- [Model Serving Overview](https://docs.databricks.com/aws/en/machine-learning/model-serving/)
- [Serving Endpoints](https://docs.databricks.com/aws/en/machine-learning/model-serving/create-foundation-model-endpoints)
- [AI Elements docs](https://ui.shadcn.com/docs/registry/ai-elements)
- [AI Elements docs](https://elements.ai-sdk.dev/docs)
4 changes: 2 additions & 2 deletions content/recipes/genie-multi-space/content.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,6 @@ Open `<app-url>/genie` while signed in to Databricks and verify:

#### References

- [Genie plugin docs](https://databricks.github.io/appkit/docs/plugins/genie)
- [GenieChat component](https://databricks.github.io/appkit/docs/api/appkit-ui/genie/GenieChat)
- [Genie plugin docs](/docs/appkit/v0/plugins/genie)
- [GenieChat component](/docs/appkit/v0/api/appkit-ui/genie/GenieChat)
- [AI/BI Genie documentation](https://docs.databricks.com/en/genie/index.html)
2 changes: 1 addition & 1 deletion content/recipes/medallion-architecture-from-cdc/content.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,6 @@ For implementing each layer, the following Databricks agent skills provide detai

- [Medallion architecture](https://docs.databricks.com/aws/en/lakehouse/medallion)
- [Lakeflow Declarative Pipelines](https://docs.databricks.com/aws/en/delta-live-tables/)
- [Materialized views](https://docs.databricks.com/aws/en/delta-live-tables/materialized-views)
- [Materialized views](https://docs.databricks.com/aws/en/ldp/materialized-views)
- [Lakehouse Sync](https://docs.databricks.com/aws/en/oltp/projects/lakehouse-sync)
- [DevHub: Pipelines and freshness](/docs/lakehouse/pipelines)
6 changes: 3 additions & 3 deletions content/recipes/volume-file-upload/content.md
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ databricks apps logs <app-name> --profile <PROFILE>

#### References

- [Files plugin docs](https://databricks.github.io/appkit/docs/plugins/files)
- [Files plugin docs](/docs/appkit/v0/plugins/files)
- [Unity Catalog Volumes](https://docs.databricks.com/en/connect/unity-catalog/volumes.html)
- [DirectoryList component](https://databricks.github.io/appkit/docs/api/appkit-ui/files/DirectoryList)
- [FilePreviewPanel component](https://databricks.github.io/appkit/docs/api/appkit-ui/files/FilePreviewPanel)
- [DirectoryList component](/docs/appkit/v0/api/appkit-ui/files/DirectoryList)
- [FilePreviewPanel component](/docs/appkit/v0/api/appkit-ui/files/FilePreviewPanel)
2 changes: 1 addition & 1 deletion docs/apps/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ GRANT databricks_superuser TO "<your-email>";

See [Lakebase Development](/docs/lakebase/development#local-development) for the full local access workflow.

For testing against production data without redeploying, see the [remote bridge](https://databricks.github.io/appkit/docs/development/remote-bridge).
For testing against production data without redeploying, see the [remote bridge](/docs/appkit/v0/development/remote-bridge).

## Add a plugin

Expand Down
4 changes: 2 additions & 2 deletions src/lib/examples/build-example-markdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function buildExportGetStartedSection(example: Example): string {
return [
"## Get started",
"",
"Run the command below to scaffold this example into a new directory using the [AppKit template system](https://databricks.github.io/appkit/docs/development/templates). The CLI will prompt you for required resources (e.g. Lakebase branch, database), auto-resolve connection details into your local `.env`, and drop you into a ready-to-run project.",
"Run the command below to scaffold this example into a new directory using the [AppKit template system](/docs/appkit/v0/development/templates). The CLI will prompt you for required resources (e.g. Lakebase branch, database), auto-resolve connection details into your local `.env`, and drop you into a ready-to-run project.",
"",
"**Before running, make sure you have a valid Databricks CLI profile.** The init flow calls the workspace API to resolve connection details, so it fails immediately without auth. Run `databricks auth profiles` — if no profile shows `Valid: YES`, authenticate one with `databricks auth login --profile <name> --host <workspace-url>`. If `DEFAULT` is not valid, pass the profile you want to use via `--profile <name>` appended to the init command below.",
"",
Expand Down Expand Up @@ -125,7 +125,7 @@ export function buildFullPrompt(
lines.push(
`### ${initStepNumber}. Scaffold the project with \`databricks apps init\``,
"",
"Run the command below to scaffold this example into a new directory using the [AppKit template system](https://databricks.github.io/appkit/docs/development/templates). It creates the app in your workspace, binds required resources, and writes a local `.env` with connection details resolved by the AppKit plugins.",
"Run the command below to scaffold this example into a new directory using the [AppKit template system](/docs/appkit/v0/development/templates). It creates the app in your workspace, binds required resources, and writes a local `.env` with connection details resolved by the AppKit plugins.",
"",
"```bash",
example.initCommand,
Expand Down