-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
110 lines (110 loc) · 1.39 KB
/
.gitignore
File metadata and controls
110 lines (110 loc) · 1.39 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
# Compiled object files
*.o
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dll
*.dylib
# Compiled Static libraries
*.lib
*.a
# Executables
*.exe
*.out
*.app
*.elf
# Debug files
*.dSYM/
*.su
*.idb
*.pdb
# CMake build folders
CMakeFiles/
CMakeCache.txt
cmake_install.cmake
# Qt build files
moc_*
qrc_*
ui_*
# Code::Blocks project files
*.depend
*.layout
# Visual Studio files
*.vcxproj*
*.sln
*.opensdf
*.sdf
*.ipch
*.user
*.filters
# CLion IDE files
.idea/
*.iml
# Xcode files
*.xcworkspace
*.xcodeproj
# Backup files
*~
*.bak
*.swp
*.tmp
# Docker
# Ignore Docker volumes, logs, and build artifacts
docker-compose.override.yml
docker-compose.local.yml
docker-compose.dev.yml
docker-compose.prod.yml
.env
.env.*
*.env
docker-data/
**/docker-data/
**/logs/
logs/
*.log
# Ignore build directories
build/
Build/
bin/
Bin/
dist/
Dist/
# Ignore test output
test-output/
*.gcda
*.gcno
*.gcov
# Ignore system files
.DS_Store
Thumbs.db
# Ignore node_modules if using node in Docker
node_modules/
# Ignore Python virtualenv if using python in Docker
venv/
__pycache__/
.venv/
# Ignore coverage reports
coverage/
*.lcov
# Ignore editor files
.vscode/
*.code-workspace
# Ignore generated documentation
docs/
doc/
*.pdf
# Ignore custom files
*.secrets
*.key
*.pem
# Ignore any unnecessary testing files
tests/encoded/
tests/verdict/
tests/reports/
tests/logs/
coverage-reports/
coverage
API_DOCUMENTATION.md