-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
38 lines (27 loc) · 1.11 KB
/
env.example
File metadata and controls
38 lines (27 loc) · 1.11 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
32
33
34
35
36
37
38
# Rivet Actor Implementation - Environment Variables
# ===========================================
# Required for Local Development
# ===========================================
# Daytona API Key (for sandbox creation)
DAYTONA_API_KEY=your_daytona_api_key
# Anthropic API Key (for Claude agent in sandboxes)
ANTHROPIC_API_KEY=your_anthropic_api_key
# Server port (default: 3000)
PORT=3000
# ===========================================
# Required for Railway + Rivet Deployment
# ===========================================
# Rivet endpoint (provided by Rivet dashboard after connecting)
# Points to the Rivet Engine service
RIVET_ENDPOINT=https://your-rivet-engine.railway.internal
# Rivet public endpoint (for client connections)
RIVET_PUBLIC_ENDPOINT=https://your-app.railway.app/api/rivet
# ===========================================
# Optional Configuration
# ===========================================
# Node environment
NODE_ENV=development
# Rivet inspector token (for debugging in production)
# RIVET_INSPECTOR_TOKEN=your_inspector_token
# Runner version (auto-increments on deployment)
# RIVET_RUNNER_VERSION=1