-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
31 lines (22 loc) · 1.1 KB
/
.env.example
File metadata and controls
31 lines (22 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copy this file to .env for local sandbox and LLM testing.
# Required for E2B-backed sandbox creation.
E2B_API_KEY="your-e2b-api-key"
# Required when starting an OpenAI-backed runtime in a sandbox.
OPENAI_API_KEY="your-openai-api-key"
# Required when starting a Claude-backed runtime in a sandbox.
ANTHROPIC_API_KEY="your-anthropic-api-key"
# Optional: override the runtime start command used by sandbox tests.
# Defaults to: npx -y runtimeuse@latest
# Useful with `packages/runtimeuse/scripts/dev-publish.sh`, which prints a curl/unzip command.
RUNTIMEUSE_RUN_COMMAND="npx -y runtimeuse@latest"
# Optional: reuse the E2B template between test runs.
E2B_REUSE_TEMPLATE=false
# Optional: point tests at an already-running runtime instead of creating a sandbox.
# TEST_WS_URL="ws://localhost:8080"
# Required for LLM artifact upload tests that write to S3.
TEST_S3_BUCKET="your-test-bucket"
# Optional: defaults to us-east-1 in the test fixtures.
AWS_REGION="us-east-1"
# Optional for scratch scripts using other sandbox providers.
# SANDBOX_API_KEY="your-sandbox-provider-api-key"
# DAYTONA_API_KEY="your-daytona-api-key"