Skip to content

Commit

Permalink
set shell to bash and update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
bracesproul committed Nov 6, 2023
1 parent ea17cd4 commit e89df62
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/test-exports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
run: yarn install --immutable
- name: Build
run: yarn workspace langchain build
shell: bash
env:
SKIP_API_DOCS: true

Expand All @@ -54,6 +55,7 @@ jobs:
run: yarn install --immutable
- name: Build
run: yarn workspace langchain build
shell: bash
env:
SKIP_API_DOCS: true

Expand All @@ -73,6 +75,7 @@ jobs:
run: yarn install --immutable
- name: Build
run: yarn workspace langchain build
shell: bash
env:
SKIP_API_DOCS: true

Expand All @@ -92,6 +95,7 @@ jobs:
run: yarn install --immutable
- name: Build
run: yarn workspace langchain build
shell: bash
env:
SKIP_API_DOCS: true

Expand All @@ -111,6 +115,7 @@ jobs:
run: yarn install --immutable
- name: Build
run: yarn workspace langchain build
shell: bash
env:
SKIP_API_DOCS: true

Expand All @@ -130,6 +135,7 @@ jobs:
run: yarn install --immutable
- name: Build
run: yarn workspace langchain build
shell: bash
env:
SKIP_API_DOCS: true

Expand All @@ -149,6 +155,7 @@ jobs:
run: yarn install --immutable
- name: Build
run: yarn workspace langchain build
shell: bash
env:
SKIP_API_DOCS: true

Expand Down
12 changes: 11 additions & 1 deletion api-docs/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
# Autogeneratd API documentation for LangChainJS
# Autogeneratd API documentation for LangChainJS

Do not edit the contents of this directory directly.

## Usage

To build the API refs run `yarn build` from the root of this directory, then `yarn dev` or `yarn start` to serve the docs locally.
This app uses [Typedoc](https://typedoc.org/) to generate API references from the source code. The generated HTML is then placed inside the `/public` directory, which is served by [Next.js](https://nextjs.org/).
There is a default redirect when requests are made to `/` which redirects to `/index.html`.

The API references are gitignored by default, so they will not be committed to the repo.

0 comments on commit e89df62

Please sign in to comment.