Skip to content

Commit

Permalink
💚 Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Aug 7, 2023
1 parent acced19 commit ab69512
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ lamin_examples_docs/
lamindb_docs.zip
pytorch_lamin_mnist_docs.zip
redun_lamin_fasta_docs.zip
lamin_usecases_docs*
docs*

# macOS
.DS_Store
Expand Down
4 changes: 3 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,13 @@ def pull_artifacts(session):
if (
path.name == "index.md"
or "/storage/" in path.as_posix()
or path.name == "faq"
or path.name == "faq" # directory treated below
):
continue
path.rename(Path("docs") / path.name)
# lamindb faq
for path in ("lamindb_docs/faq").glob("*"):
path.rename(Path("docs/faq") / path.name)
replace_content("docs/faq.md", {FAQ_MATCH: FAQ_APPEND})
# lamindb guide
replace_content("docs/guide.md", {OTHER_TOPICS_ORIG: "\n\n"})
Expand Down

0 comments on commit ab69512

Please sign in to comment.