.env.exampleโข646 B
# Transport Mode
TRANSPORT_MODE=stdio # 'stdio' for local, 'http' for remote HTTP/SSE server
# HTTP Server (when TRANSPORT_MODE=http)
HTTP_PORT=3000
HTTP_HOST=0.0.0.0
ALLOWED_ORIGINS=* # Comma-separated origins, or * for all (e.g., "https://app.example.com,https://admin.example.com")
API_KEY= # Optional: Set API key for authentication
# Storage
STORAGE_TYPE=s3 # or 'local' for development
AWS_ACCESS_KEY_ID=your_access_key
AWS_SECRET_ACCESS_KEY=your_secret_key
AWS_REGION=ap-southeast-1
S3_BUCKET=your-excel-files-bucket
# Server
LOG_LEVEL=info
MAX_FILE_SIZE_MB=50
PRESIGNED_URL_EXPIRY=3600
# Development
DEV_STORAGE_PATH=./temp-files