Replaces the minimal project description with a comprehensive README including a component overview table, quick start instructions, common Ansible operations, and links to detailed documentation. Aligns with Red Panda Approval™ standards.
22 lines
1019 B
Django/Jinja
22 lines
1019 B
Django/Jinja
# Kernos Environment Configuration
|
|
# HTTP-enabled MCP shell server using FastMCP
|
|
|
|
# ============================================================================
|
|
# Server Configuration
|
|
# ============================================================================
|
|
HOST={{ kernos_host | default('0.0.0.0') }}
|
|
PORT={{ kernos_port }}
|
|
|
|
# ============================================================================
|
|
# Logging Configuration
|
|
# ============================================================================
|
|
LOG_FORMAT={{ kernos_log_format | default('json') }}
|
|
LOG_LEVEL={{ kernos_log_level | default('INFO') }}
|
|
ENVIRONMENT={{ kernos_environment | default('production') }}
|
|
|
|
# ============================================================================
|
|
# Security Configuration
|
|
# ============================================================================
|
|
# Comma-separated whitelist of allowed commands
|
|
# Commands after shell operators (;, &&, ||, |) are also validated
|
|
ALLOW_COMMANDS={{ kernos_allow_commands }} |