Skip to content

Commit

Permalink
πŸ“ Move data lineage to use cases (#49)
Browse files Browse the repository at this point in the history
* πŸ“ Add data lineage to use cases

* 🚚 Rename examples to usecases
  • Loading branch information
falexwolf committed Aug 11, 2023
1 parent 636b5ce commit 2896186
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@ def install(session: nox.Session) -> None:
session.run(*"pip install ./lamindb[aws,bionty]".split())


EXAMPLES = """
USECASES = """
```{toctree}
:maxdepth: 1
:hidden:
:caption: Use cases
../data-lineage
../by-registry
../by-datatype
../redun
Expand Down Expand Up @@ -119,7 +120,7 @@ def pull_artifacts(session):
with open("docs/guide.md") as f:
content = f.read()
with open("docs/guide.md", "w") as f:
content += EXAMPLES
content += USECASES
content += OTHER_TOPICS
f.write(content)

Expand Down

0 comments on commit 2896186

Please sign in to comment.