Skip to content
Open
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
4 changes: 2 additions & 2 deletions examples/custom-sandbox-domain-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Example of mapping custom subdomains to your E2B sandboxes. Access sandboxes at `my-app.yourdomain.com` instead of default URLs.

## Tech Stack
- [E2B Code Interpreter SDK](https://github.com/e2b-dev/code-interpreter)
- [E2B SDK](https://github.com/e2b-dev/e2b)
- Express.js

## How It Works
Expand All @@ -18,7 +18,7 @@ Example of mapping custom subdomains to your E2B sandboxes. Access sandboxes at
- Copy `.env.template` to `.env`
- Get your [E2B API KEY](https://e2b.dev/docs/getting-started/api-key) and add it to `.env`

### 2. Install packagesInstall the E2B Code Interpreter SDK and other dependencies
### 2. Install packages

```bash
npm i
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-sandbox-domain-proxy/app.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Sandbox } from '@e2b/code-interpreter'
import Sandbox from 'e2b'
import express from 'express'
import { createProxyMiddleware } from 'http-proxy-middleware'
import open from 'open'
Expand Down
Loading
Loading