-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
62 lines (50 loc) · 1.75 KB
/
Copy path.gitignore
File metadata and controls
62 lines (50 loc) · 1.75 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
# Build artifact — regenerated by scripts/build.sh from schema-endpoints/merged/.
/build/
# ---- Terraform -------------------------------------------------------------
# Local .terraform directories (provider plugins, module cache). The `**`
# pattern catches nested ones under terraform/modules/ too.
**/.terraform/*
# Local state files. We use an S3 backend, but guard anyway in case someone
# runs terraform outside the configured workspace.
*.tfstate
*.tfstate.*
# Crash logs.
crash.log
crash.*.log
# Variable files can contain secrets; commit *.tfvars.example instead.
*.tfvars
*.tfvars.json
!*.tfvars.example
# Developer-local override files. Terraform auto-loads these if present.
override.tf
override.tf.json
*_override.tf
*_override.tf.json
# CLI config with credentials.
.terraformrc
terraform.rc
# Saved plan files.
*.tfplan
# NOTE: .terraform.lock.hcl IS committed (HashiCorp best practice — it pins
# the exact provider versions your team resolves against).
# ---- Python (merge.py, test scripts) ---------------------------------------
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
.pytest_cache/
# ---- HDF5 enumeration working dirs -----------------------------------------
# download_h5_granules.py defaults to ./granules/; enumerate_h5_fields.py
# defaults to ./schema_fields/. Both are local scratch — the publishable
# artifacts are copied into schema-endpoints/generated/ before commit.
/granules/
/schema_fields/
# ---- Claude skill archives -------------------------------------------------
# Rebuilt on demand by `make package-skill-*`; the on-disk skill
# directories (skills/<name>/) are the source of truth.
/skills/*.skill
/tmp_skill_for_export/
# ---- OS noise --------------------------------------------------------------
.DS_Store
Thumbs.db