Files
ouranos/ansible/kernos/.env.j2
Robert Helewka b4d60f2f38 docs: rewrite README with structured overview and quick start guide
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.
2026-03-03 12:49:06 +00:00

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 }}