-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
110 lines (92 loc) · 1.18 KB
/
.gitignore
File metadata and controls
110 lines (92 loc) · 1.18 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
# Local scratch / backup area (never committed)
.backup/
# Build directories
build/
build-*/
cmake-build-*/
dist/
*.o
*.a
*.so
*.dylib
# CMake
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
install_manifest.txt
CTestTestfile.cmake
_deps/
# Generated files
*.log
*.out
core
core.*
# Binaries
mygramdb
mygram-cli
*.exe
# Dependencies
third_party/*
!third_party/CMakeLists.txt
# Snapshots & Data
/var/
*.snap
snapshots/
tmp/
# Test outputs
/[Tt]esting/
*.gcov
*.gcda
*.gcno
# Coverage reports
coverage/
*.info
# Docker
.env
.env.prod
.env.local
docker-compose.override.yml
logs/
# SQL files (may contain sensitive data)
*.sql
!support/docker/mysql/init/*.sql
!e2e/docker/mysql-init/*.sql
# IDE
.idea/
*.swp
*.swo
*~
*.bak
# OS
.DS_Store
# Cache
.cache/
# Tools
.claude/
.serena/
.wrangler/
.act/
# Config (local customizations)
CLAUDE.md
.test-diff.conf
.secrets
# Backup
backup/
# Python (support/benchmark)
__pycache__/
*.py[oc]
*.egg-info
.venv/
.python-version
dumps/
# E2E test results
e2e/results/reports/*.xml
e2e/results/metrics/
e2e/.venv/
e2e/__pycache__/
e2e/**/__pycache__/
e2e/*.egg-info/
e2e/.mypy_cache/
e2e/.ruff_cache/
e2e/.pytest_cache/
!e2e/results/baselines/baseline.json