TenantAtlas/.codex/config.toml
ahmido 0a1ecf99c9 feat(ui): implement diagnostic entry point consolidation (#445)
Applied diagnostic surface contract rules to Audit Log inspect modal and Support Diagnostics action context, consolidating raw diagnostic data into safe modals according to Spec 374.

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #445
2026-06-13 01:16:00 +00:00

34 lines
857 B
TOML

[mcp_servers.laravel-boost]
command = "./scripts/platform-sail"
args = ["artisan", "boost:mcp"]
cwd = "/Users/ahmeddarrazi/Documents/projects/wt-plattform"
[mcp_servers.laravel-boost.tools.search-docs]
approval_mode = "approve"
[mcp_servers.laravel-boost.tools.tinker]
approval_mode = "approve"
[mcp_servers.gitea]
command = "bash"
args = [
"-lc",
'''
set -euo pipefail
ROOT="/Users/ahmeddarrazi/Documents/projects/wt-plattform"
for candidate in "$ROOT/.env" "$ROOT/apps/platform/.env"; do
if [ -f "$candidate" ] && grep -q '^GITEA_ACCESS_TOKEN=' "$candidate"; then
set -a
. "$candidate"
set +a
export GITEA_HOST="https://git.cloudarix.de"
exec docker run -i --rm -e GITEA_HOST -e GITEA_ACCESS_TOKEN docker.gitea.com/gitea-mcp-server -t stdio
fi
done
echo "GITEA_ACCESS_TOKEN not found in repo .env files" >&2
exit 1
''',
]