Skip to content

Commit

Permalink
clarify value prop
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 committed Sep 1, 2023
1 parent 60b4d29 commit 4f9f135
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/modeling/extending-the-metadata-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,9 @@ After following the developing guide, you should be able to emit your new event
</TabItem>
<TabItem value="packaged" label="Custom Models Package">

If you want to use your custom models beyond your local machine, then you can generate a custom model package that can be installed from other places.
If you want to use your custom models beyond your local machine without forking DataHub, then you can generate a custom model package that can be installed from other places.

This package should be installed alongside the base `acryl-datahub` package, and its metadata models will take precedence over the default ones.

```bash
cd metadata-ingestion
Expand Down
3 changes: 3 additions & 0 deletions metadata-ingestion/scripts/custom_package_codegen.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ def generate(

click.echo()
click.secho(f"Generated package at {package_path}", fg="green")
click.echo(
"This package should be installed alongside the main acryl-datahub package."
)
click.echo()
click.echo(f"Install the custom package locally with `pip install {package_path}`")
click.echo(
Expand Down

0 comments on commit 4f9f135

Please sign in to comment.