-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
42 lines (34 loc) · 1.05 KB
/
.env.example
File metadata and controls
42 lines (34 loc) · 1.05 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
39
40
41
42
# Code Mode Unified Environment Variables
# Copy this to .env and customize for your environment
# Server Configuration
PORT=3001
HOST=localhost
# Authentication
AUTH_PROVIDER=jwt
JWT_SECRET=your-jwt-secret-here
JWT_ISSUER=code-mode-unified
JWT_AUDIENCE=code-execution
JWT_ALGORITHM=HS256
JWT_EXPIRATION=3600
# Sandbox Configuration
SANDBOX_MEMORY=134217728
SANDBOX_TIMEOUT=30000
SANDBOX_CPU_QUOTA=0.5
# Logging
LOG_LEVEL=info
LOG_FORMAT=pretty
# CORS
CORS_ENABLED=true
CORS_ORIGINS=*
# Configuration File Path
CONFIG_PATH=./config.yaml
# MCP Server Environment Variables (if using MCP servers)
# HELPSCOUT_CLIENT_ID=your-helpscout-client-id
# HELPSCOUT_CLIENT_SECRET=your-helpscout-client-secret
# OAuth 2.1 Configuration (if using OAuth)
# OAUTH_CLIENT_ID=your-oauth-client-id
# OAUTH_CLIENT_SECRET=your-oauth-client-secret
# OAUTH_REDIRECT_URI=http://localhost:3001/auth/callback
# OAUTH_AUTHORIZATION_ENDPOINT=https://provider.com/oauth/authorize
# OAUTH_TOKEN_ENDPOINT=https://provider.com/oauth/token
# OAUTH_USER_INFO_ENDPOINT=https://provider.com/oauth/userinfo