Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ git clone https://github.com/bosonprotocol/agent-builder.git
cd agent-builder

# Install all dependencies
npm install
npm ci

# Build examples
npm run build
```

### Available Examples
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"src/examples/xmtp"
],
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.json",
"watch": "rimraf dist && tsc --project tsconfig.json --watch",
"start:standalone-vercel": "npm start --prefix ./src/examples/standalone/vercel",
"start:standalone-langchain": "npm start --prefix ./src/examples/standalone/langchain",
Expand Down
8 changes: 8 additions & 0 deletions src/examples/standalone/vercel/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## Standalone - vercel

### Configure environment

```
cp .env.example .env
```

Edit the `.env` file and enter the missing values

### Run the script

```
Expand Down
Loading