-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
105 lines (91 loc) · 2.04 KB
/
Copy path.gitignore
File metadata and controls
105 lines (91 loc) · 2.04 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
# =========================
# API Keys & Secrets
# =========================
config.ini
.env
server/.ssh/
# =========================
# Databases (large binaries)
# =========================
database/apt_intel.db
database/apt_intel.db-wal
database/apt_intel.db-shm
database/apt_intel.db.bak
/apt_intel_web.db
# [web-db-decouple-2026-06-20] The web export is NO LONGER committed to this repo. Committing a
# fresh ~43 MB binary every sync bloated .git past 1 GB and OOM-killed git gc on the VPS. The DB
# is now served from https://api.aptwatch.org/apt_intel_web.db (nginx + Cloudflare, CORS). Keep it
# ignored everywhere so it can never re-enter history. (Was previously force-included via
# `!web/apt_intel_web.db` for GitHub Pages; that line is intentionally removed.)
web/apt_intel_web.db
*.db-wal
*.db-shm
*.db-journal
# =========================
# Private admin page (local only)
# =========================
web/admin.html
# =========================
# Classified reports (TLP:AMBER/RED)
# =========================
reports/*.docx
reports/CRITICAL-TARGETS-*.txt
# =========================
# Scan data (too large for git)
# =========================
scans/*.csv
# =========================
# Logs
# =========================
database/logs/
community/import_log.txt
logs/
*.log
# =========================
# Cache
# =========================
database/cache/
# =========================
# Python
# =========================
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.egg-info/
dist/
build/
.eggs/
venv/
.venv/
env/
# =========================
# Docker
# =========================
docker-compose.override.yml
# =========================
# OS files
# =========================
.DS_Store
Thumbs.db
Desktop.ini
*.swp
*.swo
*~
# =========================
# IDE
# =========================
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# =========================
# Server-specific (not in repo)
# =========================
/var/log/apt-intel/
iocs/suricata/generation_report.json
# Step 2.E: deploy bundles are scratch, not versioned
deploy/
# Any stray .bak files
*.bak