-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (27 loc) · 1.33 KB
/
.env.example
File metadata and controls
37 lines (27 loc) · 1.33 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
# Microsoft MCP Environment Configuration
# Copy this file to .env and fill in your values
# Required: Microsoft Azure Application Client ID
# Get this from: https://portal.azure.com -> Azure Active Directory -> App registrations
MICROSOFT_MCP_CLIENT_ID=your-azure-app-client-id-here
# Optional: Custom configuration
# Uncomment and modify as needed
# Development mode (enables debug logging)
# MICROSOFT_MCP_DEBUG=true
# Custom token storage location (default: ~/.microsoft-mcp/tokens.json)
# MICROSOFT_MCP_TOKEN_PATH=/custom/path/to/tokens.json
# Custom authentication timeout (default: 300 seconds)
# MICROSOFT_MCP_AUTH_TIMEOUT=300
# Email framework theme override (default: auto-select based on domain)
# MICROSOFT_MCP_EMAIL_THEME=baytown # Options: baytown, humble, executive
# API rate limiting (requests per minute, default: 60)
# MICROSOFT_MCP_RATE_LIMIT=60
# Test-specific configuration (used in CI/CD)
# SKIP_LIVE_TESTS=true
# TEST_MODE=true
# External service integrations (optional)
# SLACK_WEBHOOK_URL=https://hooks.slack.com/services/YOUR/SLACK/WEBHOOK
# DISCORD_WEBHOOK_URL=https://discord.com/api/webhooks/YOUR/DISCORD/WEBHOOK
# CI/CD specific environment variables (for reference - set in GitHub Actions)
# GITHUB_TOKEN=<provided-by-github>
# CODECOV_TOKEN=<optional-for-enhanced-codecov>
# PYPI_API_TOKEN=<managed-via-trusted-publishing>