-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
80 lines (70 loc) · 2.21 KB
/
Copy path.gitignore
File metadata and controls
80 lines (70 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
node_modules
.next
.open-next
.wrangler/
package-lock.json
cloudflare-env.d.ts
.dev.vars
.env.local
.venv/
.turbo/
dist/
*.tsbuildinfo
*.log
.DS_Store
.env
.env*
# Caddy-only DNS-01 token file (docker-compose.ondemand-dns.yml). The committed
# template is caddy.env.example; the real caddy.env holds a secret API token.
caddy.env
test-output/.vscode/
__pycache__/
*.pyc
tmp/
# Local agent debug-run dumps — generated by `make run` / local SSE
# replay. Each run drops a session_state snapshot, agent I/O artifacts,
# component validation logs, and a metrics summary. Useful for ad-hoc
# debugging, not for source control.
apps/runtime/public/example/run_*/
# Editor / tooling scratch
.cursor/
.codex
# Local Claude Code workspace state. Per-host files stay out; project SKILLS do
# not -- they are shared tooling and were invisible to every other machine
# while `.claude/` was ignored wholesale. Note gitignore cannot re-include a
# path whose parent directory is excluded, so this must exclude `.claude/*`
# (the contents) rather than `.claude/` (the directory) for the negation below
# to have any effect.
.claude/*
!.claude/skills/
# ...but never the per-host rig config the skill's own template tells you to copy.
.claude/skills/**/rig.local.env
# Build output (compiled bundles committed by mistake)
dist-production/
# Test / coverage / report output
playwright-report/
test-results/
test-results.json
coverage/
.coverage
htmlcov*/
*_validation_report.txt
# Local agent artifact dumps (written by import/debug scripts)
.local_artifacts/
# Stray runtime example test configs (canonical examples live under
# apps/runtime/client/public/example/)
apps/runtime/public/example/_test/
# Generated SDK reference doc (emitted by exepad-sdk build → postbuild;
# see turbo.json generate:agent-docs outputs)
packages/schemas/data/agent_docs/05_CODE_COMPONENTS.md
# Self-host local run data (./run.sh local)
.exepad-data/
# TLS certs for the local Caddy reverse-proxy sidecar (mkcert).
# Never commit private keys.
certs/
*.pem
# Browser-automation screenshots (Playwright/MCP save to cwd = repo root).
# Keep accidental captures out of the repo; real fixtures live nested under
# example/ and packages/design-tools-fixtures/.
/*.png
.playwright-mcp/