-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy path.gitignore
More file actions
112 lines (91 loc) · 1.98 KB
/
Copy path.gitignore
File metadata and controls
112 lines (91 loc) · 1.98 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# Environment
.env
.env.local
.env.*.local
# Dependencies
node_modules/
.pnpm-store/
# Build outputs
dist/
build/
.next/
out/
.turbo/
*.egg-info/
__pycache__/
*.pyc
*.pyo
# Go
*.exe
*.test
vendor/
bin/
# Terraform
.terraform/
*.tfstate
*.tfstate.backup
.terraform.lock.hcl
*.tfvars
!terraform.tfvars.example
# Python
.venv/
venv/
.eval-test-venv/
.mypy_cache/
.pytest_cache/
htmlcov/
.coverage
# IDE
.idea/
.vscode/
.cursor/
.claude/
*.swp
*.swo
# Go test/build binaries inside plugins
plugins/**/*-build-test
plugins/**/*-build
# OS
.DS_Store
Thumbs.db
# Logs
logs/
*.log
# Docker
.docker/
# Secrets
*.pem
*.key
*.crt
secrets/
.gstack/
# Local eval / build artifacts
eval_report.json
eval_mitre_accuracy_report.json
.gocache/
*.tsbuildinfo
# PR body scratch files (local working copy, never committed)
.pr-body-*.md
# Local progress tracking (per AGENTS.md preference, not committed)
PROGRESS.md
PR_TRIAGE.md
# Acceptance harness ledger (.aisoc/acceptance-history.jsonl is per-machine and
# accumulates across runs — useful for "is this getting slower?" but not for
# version control. Same applies to any other harness state we drop in here.)
.aisoc/
# Detection-import upstream clones (populated by tools.detection_import)
.import-cache/
# Docusaurus generated cache (apps/docs)
apps/docs/.docusaurus/
apps/docs/build/
# Local QA artifacts (screenshots from manual UI checks)
apps/web/.qa-screenshots/
# Marketplace index staged into the API service build context at deploy time
# (see infra/fly/fly-demo-deploy.sh). The canonical source is marketplace/index.json
# at the repo root; the API Dockerfile only sees its own dir as build context, so
# the deploy script copies the index in just-in-time. We never commit the copy.
services/api/marketplace/
# Live-dumped graph schema produced by `scripts/export_graph_schema.py`
# (default mode). The source of truth is `schemas/graph-schema.yaml`; the
# `-current.yaml` file is a runtime artefact that varies by environment.
schemas/graph-schema-current.yaml