ed4090a910
Deploy Dashboard (Dev) / deploy-dev (push) Successful in 2m11s
Introduce a localhost-only LiteLLM service template and expose a protected dashboard health endpoint for operational visibility, while adding cc-connect mobile bridge templates with conservative defaults. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
28 lines
591 B
TOML
28 lines
591 B
TOML
# cc-connect config template
|
|
# Keep one platform enabled at a time for minimal attack surface.
|
|
# This template starts with Discord only.
|
|
|
|
[service]
|
|
name = "nas-cc-connect"
|
|
log_level = "info"
|
|
|
|
[bridge]
|
|
provider = "litellm"
|
|
base_url = "http://host.docker.internal:4005"
|
|
model = "claude-arch"
|
|
request_timeout_sec = 30
|
|
|
|
[platform.discord]
|
|
enabled = true
|
|
bot_token = ""
|
|
allowed_user_ids = []
|
|
allowed_channel_ids = []
|
|
|
|
[security]
|
|
# Conservative defaults for initial rollout.
|
|
permission_mode = "confirm"
|
|
allow_yolo_mode = false
|
|
allow_shell = false
|
|
allow_file_write = false
|
|
max_session_minutes = 30
|