You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,6 +98,20 @@ export DATABRICKS_APP_NAME=your-app-name # The name of the app to deploy. If not
98
98
export DATABRICKS_WORKSPACE_DIR=your-workspace-dir # The source workspace directory to deploy the app from. It will be used to construct the absolute path: /Workspace/Users/{your-username}/{workspace-dir}
99
99
```
100
100
101
+
## Generating App templates
102
+
103
+
To generate app templates, run the following command:
104
+
105
+
```bash
106
+
pnpm generate:app-templates
107
+
```
108
+
109
+
By default, the command will generate app templates in the `../app-templates` directory, assuming that you have the [`app-templates`](https://github.com/databricks/app-templates) repository cloned in the same parent directory as this one.
110
+
111
+
You can override the output directory by setting the `APP_TEMPLATES_OUTPUT_DIR` environment variable.
112
+
113
+
By default, the command will use the `databricks` CLI to generate the app templates. You can override the CLI by setting the `DATABRICKS_CLI` environment variable to provide a different binary name or path.
114
+
101
115
## Contributing to AppKit documentation
102
116
103
117
The `docs/` directory contains the AppKit documentation site, built with Docusaurus.
# ... other environment variables, depending on the plugins you use
27
36
```
37
+
{{- if .plugins.lakebase}}
38
+
39
+
#### Lakebase Configuration
40
+
41
+
The Lakebase plugin requires additional environment variables for PostgreSQL connectivity. To learn how to configure the Lakebase plugin, see the [Lakebase plugin documentation](https://databricks.github.io/appkit/docs/plugins/lakebase).
0 commit comments