-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
124 lines (105 loc) · 1.7 KB
/
Copy path.gitignore
File metadata and controls
124 lines (105 loc) · 1.7 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
112
113
114
115
116
117
118
119
120
121
122
123
124
# Local memory / rules (do not commit)
.local/
.astra/
# Kiro project steering is tracked; ignore per-machine state and caches.
.kiro/*
!.kiro/steering/
.kiro/steering/*
!.kiro/steering/project-rules.md
# Docker volumes (local data)
deployment/all-in-one/data/
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
env/
*.egg
*.egg-info/
.eggs/
dist/
build/
.mypy_cache/
.pytest_cache/
.coverage
htmlcov/
*.manifest
.models.yaml*
!.models.yaml.example
# Node
node_modules/
coverage/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.npm
.yarn-integrity
# TypeScript incremental (monorepo-wide; per-package rules may also list this)
*.tsbuildinfo
.eslintcache
# Rust
target/
# Agent tool configs (track project rules, ignore user-local extras)
.cursor/plans/
# IDE / OS
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# Env and secrets
.env
.env.*
!.env.example
!.env.*.example
.npmrc
.pypirc
.netrc
*.pem
*.key
*.p12
*.pfx
.secrets*
*.yaml.bak
# Logs and temp
*.log
logs/
tmp/
temp/
.cache/
# Development runtime files (generated by make dev-*)
api_server.pid
web_server.pid
astra_edge.pid
api_server.log
astra_edge.log
# Docker volumes
mo-data/
trustmem_cloud_v1/data/
feedback_export.jsonl
/backups/
# Local reviews and task plans may contain private investigation details.
# Keep durable, shareable decisions in docs/ instead.
review/
/plans/
*.spec
.mo-session/
budget-app/
.mo-delivery-*.json
# Local cargo config lives here; only audit policy is tracked for CI.
.cargo/*
!.cargo/audit.toml
# Benchmarks (local SWE-bench workspaces, runs, reports)
benchmarks/
# insta-rs runtime artifacts (only the canonical .snap is tracked)
*.snap.new
.insta/
investigation/
tools/
monorepo/target/
react-app/target/