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.
This commit is contained in:
26
ansible/mcp_switchboard/.env.j2
Normal file
26
ansible/mcp_switchboard/.env.j2
Normal file
@@ -0,0 +1,26 @@
|
||||
# Django Configuration
|
||||
SECRET_KEY={{ vault_mcp_switchboard_secret_key }}
|
||||
DEBUG=True
|
||||
ALLOWED_HOSTS=localhost,127.0.0.1,oberon.incus,{{ ansible_default_ipv4.address }}
|
||||
|
||||
# Database Configuration
|
||||
DB_ENGINE=django.db.backends.postgresql
|
||||
DB_NAME={{ mcp_switchboard_db_name }}
|
||||
DB_USER={{ mcp_switchboard_db_user }}
|
||||
DB_PASSWORD={{ mcp_switchboard_db_password }}
|
||||
DB_HOST={{ mcp_switchboard_db_host }}
|
||||
DB_PORT={{ mcp_switchboard_db_port }}
|
||||
|
||||
# Docker Configuration
|
||||
DOCKER_HOST={{ mcp_switchboard_docker_host }}
|
||||
|
||||
# RabbitMQ Configuration
|
||||
RABBITMQ_HOST={{ mcp_switchboard_rabbitmq_host }}
|
||||
RABBITMQ_PORT={{ mcp_switchboard_rabbitmq_port }}
|
||||
RABBITMQ_USER={{ mcp_switchboard_rabbitmq_user }}
|
||||
RABBITMQ_PASSWORD={{ mcp_switchboard_rabbitmq_password }}
|
||||
CELERY_BROKER_URL=amqp://{{ mcp_switchboard_rabbitmq_user }}:{{ mcp_switchboard_rabbitmq_password }}@{{ mcp_switchboard_rabbitmq_host }}:{{ mcp_switchboard_rabbitmq_port }}//
|
||||
|
||||
# Application Configuration
|
||||
BIND_HOST=0.0.0.0
|
||||
BIND_PORT={{ mcp_switchboard_port }}
|
||||
Reference in New Issue
Block a user