-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (28 loc) · 1.11 KB
/
.env.example
File metadata and controls
34 lines (28 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
# Volta Shell Environment Variables
# Claude API Configuration
ANTHROPIC_API_KEY=your_ANTHROPIC_API_KEY_here
# Optional: Specify different Claude model (default: claude-3-5-sonnet-20241022)
# CLAUDE_MODEL=claude-3-5-haiku-20241022
# Gemini API Configuration
GEMINI_API_KEY=your_GEMINI_API_KEY_here
# Custom Repository Path (Optional)
# Mount an external repository into agent containers for editing
# Supports both absolute paths and tilde expansion
# Examples:
# CUSTOM_REPO_PATH=~/repositories/my-project
# CUSTOM_REPO_PATH=/absolute/path/to/repository
# Leave empty or comment out to disable custom repository mounting
CUSTOM_REPO_PATH=
# User/Group ID for file permissions (Optional)
# Set these to match your host user for proper file permissions
# Find your UID/GID: id -u && id -g
# UID=1000
# GID=1000
# Auth0 Configuration for Monitor Web Interface
# Get these values from your Auth0 dashboard
AUTH0_DOMAIN=your-domain.auth0.com
AUTH0_CLIENT_ID=your_client_id
AUTH0_CALLBACK_URL=http://localhost:4000
AUTH0_SECRET=your_32_character_secret_key
APP_BASE_URL=http://localhost:4000
AUTH0_CLIENT_SECRET=your_client_secret