Skip to content

Commit 21af767

Browse files
committed
cleanup: remove build artifacts, generated files, and byproducts
- Removed frontend/node_modules directory (251MB) - Removed frontend/dist build artifacts (496KB) - Removed Python __pycache__ directories - Removed compiled binaries from build/bin/ (14.1MB) - Removed build/windows/installer/tmp temporary directory (1.7MB) - Removed coverage.out (Go test coverage report - 67KB) - Removed frontend/package.json.md5 (generated checksum file) - Removed endpoints/echo-model/.policy_store.db (SQLite database) Updated .gitignore with comprehensive exclusions for: - Go coverage and profiling artifacts (*.prof, *.pprof) - Test artifacts (.coverage, .pytest_cache, htmlcov) - Python cache files (__pycache__, *.pyc) - Generated checksums (*.md5, *.sha256, *.sha1) - Editor files (*.swp, *.swo, *~) - OS-specific files (.DS_Store, Thumbs.db) - IDE configuration files (.vscode, .idea) - Build artifacts and temporary files Reduces repo size from ~300MB to 1.4MB (excluding .git)
1 parent f88ae1f commit 21af767

4 files changed

Lines changed: 48 additions & 874 deletions

File tree

syfthub-desktop/.gitignore

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,51 @@
11
build/bin
2+
build/windows/installer/tmp
23
node_modules
4+
frontend/node_modules
35
frontend/dist
6+
__pycache__
7+
*.pyc
8+
*.pyo
9+
*.pyd
10+
.Python
11+
*.so
12+
.DS_Store
13+
Thumbs.db
14+
.vscode/settings.json
15+
.idea/
16+
*.log
17+
.env
18+
.env.local
19+
20+
# Go coverage and profiling
21+
coverage.out
22+
*.prof
23+
*.pprof
24+
*.test
25+
26+
# Test and build artifacts
27+
.coverage
28+
.pytest_cache/
29+
.tox/
30+
htmlcov/
31+
*.egg-info/
32+
dist/
33+
build/
34+
35+
# Editor and IDE files
36+
*.swp
37+
*.swo
38+
*~
39+
.DS_Store
40+
.vscode/
41+
.idea/
42+
*.iml
43+
44+
# Temporary files
45+
*.tmp
46+
*.temp
47+
48+
# Generated checksums and build metadata
49+
*.md5
50+
*.sha256
51+
*.sha1

0 commit comments

Comments
 (0)