Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
wisp.place
1{
2 "version": "1.0.0",
3 "description": "Default ignore patterns for wisp.place uploads",
4 "patterns": [
5 ".git",
6 ".git/**",
7 ".github",
8 ".github/**",
9 ".gitlab",
10 ".gitlab/**",
11 ".DS_Store",
12 ".wisp.metadata.json",
13 ".env",
14 ".env.*",
15 "node_modules",
16 "node_modules/**",
17 "Thumbs.db",
18 "desktop.ini",
19 "._*",
20 ".Spotlight-V100",
21 ".Spotlight-V100/**",
22 ".Trashes",
23 ".Trashes/**",
24 ".fseventsd",
25 ".fseventsd/**",
26 ".cache",
27 ".cache/**",
28 ".temp",
29 ".temp/**",
30 ".tmp",
31 ".tmp/**",
32 "__pycache__",
33 "__pycache__/**",
34 "*.pyc",
35 ".venv",
36 ".venv/**",
37 "venv",
38 "venv/**",
39 "env",
40 "env/**",
41 "*.swp",
42 "*.swo",
43 "*~",
44 ".tangled",
45 ".tangled/**"
46 ],
47 "comments": {
48 ".git": "Version control - thousands of files",
49 ".github": "GitHub workflows and configuration",
50 ".gitlab": "GitLab CI/CD configuration",
51 ".DS_Store": "macOS metadata - can leak info",
52 ".wisp.metadata.json": "Wisp internal metadata",
53 ".env": "Environment variables with secrets",
54 "node_modules": "Dependency folder - can be 100,000+ files",
55 "Thumbs.db": "Windows thumbnail cache",
56 "desktop.ini": "Windows folder config",
57 "._*": "macOS resource fork files",
58 ".Spotlight-V100": "macOS Spotlight index",
59 ".Trashes": "macOS trash folder",
60 ".fseventsd": "macOS filesystem events",
61 ".cache": "Cache directories",
62 ".temp": "Temporary directories",
63 ".tmp": "Temporary directories",
64 "__pycache__": "Python cache",
65 "*.pyc": "Python compiled files",
66 ".venv": "Python virtual environments",
67 "venv": "Python virtual environments",
68 "env": "Python virtual environments",
69 "*.swp": "Vim swap files",
70 "*.swo": "Vim swap files",
71 "*~": "Editor backup files",
72 ".tangled": "Tangled directory"
73 }
74}