mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
493e474063
- Move the API reference into the vercel build - Update api reference organization and styling
18 lines
288 B
Bash
Executable File
18 lines
288 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
make install-vercel-deps
|
|
|
|
make build
|
|
|
|
rm -rf docs
|
|
mv build/output-new/docs ./
|
|
|
|
mkdir static/api_reference
|
|
|
|
git clone --depth=1 https://github.com/baskaryan/langchain-api-docs-build.git
|
|
|
|
mv -r langchain-api-docs-build/api_reference_build/html/* static/api_reference/
|
|
|