[PR #5] [MERGED] Add scaffolding for build pipeline #318

Closed
opened 2026-02-17 17:20:07 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/5
Author: @eyurtsev
Created: 6/3/2025
Status: Merged
Merged: 6/3/2025
Merged by: @eyurtsev

Base: mainHead: eugene/build_pipeline


📝 Commits (2)

📊 Changes

87 files changed (+2757 additions, -32 deletions)

View changed files

.gitignore (+185 -0)
Makefile (+56 -0)
📝 README.md (+0 -32)
pipeline/__init__.py (+5 -0)
pipeline/__main__.py (+6 -0)
pipeline/cli.py (+66 -0)
📝 pipeline/commands/__init__.py (+0 -0)
pipeline/commands/build.py (+52 -0)
pipeline/commands/dev.py (+82 -0)
📝 pipeline/core/__init__.py (+0 -0)
pipeline/core/builder.py (+197 -0)
pipeline/core/watcher.py (+231 -0)
pyproject.toml (+68 -0)
src/README.md (+32 -0)
📝 src/development.mdx (+0 -0)
📝 src/docs.json (+0 -0)
📝 src/essentials/code.mdx (+0 -0)
📝 src/essentials/images.mdx (+0 -0)
📝 src/essentials/markdown.mdx (+0 -0)
📝 src/essentials/navigation.mdx (+0 -0)

...and 67 more files

📄 Description

  • Split into /src and /build directories
  • make build -- will be used for building the final documentation
  • make dev -- builds docs, then launches mint dev + utility to watch for file changes in src

Follow up PR

  • Add unit tests [in progress]
  • Hook up github workflow for testing
  • Add pre-processors for ipython notebooks, so we can re-use existing notebooks from langgraph
  • recursive descent parser to map from mkdocs to mintlify md syntax (to simplify migration)
  • Build API references in python
  • Build API references in js

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/docs/pull/5 **Author:** [@eyurtsev](https://github.com/eyurtsev) **Created:** 6/3/2025 **Status:** ✅ Merged **Merged:** 6/3/2025 **Merged by:** [@eyurtsev](https://github.com/eyurtsev) **Base:** `main` ← **Head:** `eugene/build_pipeline` --- ### 📝 Commits (2) - [`1f17f91`](https://github.com/langchain-ai/docs/commit/1f17f91e9904b806cb845aa3c4fcc3ea22f576b4) x - [`79d5ddb`](https://github.com/langchain-ai/docs/commit/79d5ddba95d49edc6483902e7bc1dee9fd6a0f12) empty ### 📊 Changes **87 files changed** (+2757 additions, -32 deletions) <details> <summary>View changed files</summary> ➕ `.gitignore` (+185 -0) ➕ `Makefile` (+56 -0) 📝 `README.md` (+0 -32) ➕ `pipeline/__init__.py` (+5 -0) ➕ `pipeline/__main__.py` (+6 -0) ➕ `pipeline/cli.py` (+66 -0) 📝 `pipeline/commands/__init__.py` (+0 -0) ➕ `pipeline/commands/build.py` (+52 -0) ➕ `pipeline/commands/dev.py` (+82 -0) 📝 `pipeline/core/__init__.py` (+0 -0) ➕ `pipeline/core/builder.py` (+197 -0) ➕ `pipeline/core/watcher.py` (+231 -0) ➕ `pyproject.toml` (+68 -0) ➕ `src/README.md` (+32 -0) 📝 `src/development.mdx` (+0 -0) 📝 `src/docs.json` (+0 -0) 📝 `src/essentials/code.mdx` (+0 -0) 📝 `src/essentials/images.mdx` (+0 -0) 📝 `src/essentials/markdown.mdx` (+0 -0) 📝 `src/essentials/navigation.mdx` (+0 -0) _...and 67 more files_ </details> ### 📄 Description - [x] Split into /src and /build directories - [x] make build -- will be used for building the final documentation - [x] make dev -- builds docs, then launches mint dev + utility to watch for file changes in src ---- Follow up PR - [ ] Add unit tests [in progress] - [ ] Hook up github workflow for testing - [ ] Add pre-processors for ipython notebooks, so we can re-use existing notebooks from langgraph - [ ] recursive descent parser to map from mkdocs to mintlify md syntax (to simplify migration) - [ ] Build API references in python - [ ] Build API references in js --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-17 17:20:07 -05:00
yindo closed this issue 2026-02-17 17:20:07 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/docs#318