File size: 617 Bytes
a0debed |
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 |
# Proportion MCP Server Configuration
# Copy this file to .env and set your values
# Server Configuration
SERVER_NAME=0.0.0.0
SERVER_PORT=7860
# Security Configuration (REQUIRED for production)
# Generate a secure token: python -c "import secrets; print(secrets.token_urlsafe(32))"
MCP_TOKEN=your-secure-token-here
# Request Limits
MAX_REQUEST_SIZE=65536
# Development Settings
DEBUG=false
RELOAD=false
LOG_LEVEL=INFO
# Example production configuration:
# MCP_TOKEN=abc123xyz789secure_token_here
# DEBUG=false
# LOG_LEVEL=WARNING
# Example development configuration:
# DEBUG=true
# RELOAD=true
# LOG_LEVEL=DEBUG |