-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
52 lines (43 loc) · 1.43 KB
/
.gitignore
File metadata and controls
52 lines (43 loc) · 1.43 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
# Global ignore rule: Ignore everything
*
# === R2 MIGRATION: Large blocklist files now excluded ===
# All .txt blocklists are served from Cloudflare R2
# Only stats.json, README, whitelists, and standard git files tracked
# Allow essential directories (must un-ignore parent dirs first)
!/whitelist/
!/whitelist/wl_iplist/
!/whitelist/wl_domainlist/
# Allow standard repository files
!README.md
!LICENSE
!.gitignore
!.gitattributes
# Allow statistics for R2/Cloudflare Worker API
!stats.json
# === EXCLUDED: Scripts (Private) ===
# All scripts are private and not tracked in git
#script/
# === EXCLUDED: Data directories ===
# Only whitelists allowed, all blocklists in R2
#iplist/
#domainlist/
#C2IPFeed/
#dockerproject/
# Allow whitelist files ONLY (small, config-like)
!whitelist/wl_iplist/cdnips.txt
!whitelist/wl_iplist/forcedwhitelistips.txt
!whitelist/wl_iplist/removed_ips.db
!whitelist/wl_iplist/community_whitelist_ips.txt
!whitelist/wl_domainlist/osintwhitelisteddomains.txt
!whitelist/wl_domainlist/mypiholewhitelisteddomains.txt
!whitelist/wl_domainlist/community_whitelist_domains.txt
!whitelist/wl_domainlist/publicwhitelisted.txt
# Private/local whitelist configuration and generated external whitelist cache
config.private.yaml
whitelist/wl_domainlist/externalwhitelisted_cache.txt
# Allow GitHub Actions and Issue templates
!/.github/
!/.github/ISSUE_TEMPLATE/
!/.github/ISSUE_TEMPLATE/**
!/.github/workflows/
!/.github/workflows/**