-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.env.example
More file actions
38 lines (31 loc) · 1.24 KB
/
.env.example
File metadata and controls
38 lines (31 loc) · 1.24 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
# Help Scout API Configuration
# OAuth2 Client Credentials (only supported method)
# Get these from: Help Scout → My Apps → Create Private App
#
# Variable names match Help Scout UI exactly:
# Help Scout UI Environment Variable
# "App ID" → HELPSCOUT_APP_ID
# "App Secret" → HELPSCOUT_APP_SECRET
#
HELPSCOUT_APP_ID=your-app-id-from-helpscout
HELPSCOUT_APP_SECRET=your-app-secret-from-helpscout
# Alternative variable names (also supported):
# HELPSCOUT_CLIENT_ID=your-app-id # OAuth2 standard naming
# HELPSCOUT_CLIENT_SECRET=your-app-secret
# HELPSCOUT_API_KEY=your-app-id # Legacy
# Optional: Default inbox for scoped searches (improves LLM context)
# Get inbox IDs using the listAllInboxes tool
# HELPSCOUT_DEFAULT_INBOX_ID=123456
# API Configuration
HELPSCOUT_BASE_URL=https://api.helpscout.net/v2/
# Content Redaction
# Default behavior: message content IS shown (REDACT_MESSAGE_CONTENT=false)
# Set to true to hide message bodies in responses for privacy/compliance
REDACT_MESSAGE_CONTENT=false
# Legacy variable (still supported for backwards compatibility):
# ALLOW_PII=true # Same effect as REDACT_MESSAGE_CONTENT=false
# Cache Configuration
CACHE_TTL_SECONDS=300
MAX_CACHE_SIZE=10000
# Logging
LOG_LEVEL=info