proportio / .env.example
grasant's picture
Upload 15 files
a0debed verified
raw
history blame contribute delete
617 Bytes
# 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