RReyesp commited on
Commit
3acf9fe
·
1 Parent(s): 846de35

chore: add HuggingFace ignore file for clean deployment

Browse files
Files changed (1) hide show
  1. .hfignore +68 -0
.hfignore ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Hugging Face Space ignore file
2
+ # Exclude unnecessary files from HF Space deployment
3
+
4
+ # Python artifacts
5
+ __pycache__/
6
+ *.py[cod]
7
+ *.so
8
+ .Python
9
+ build/
10
+ develop-eggs/
11
+ dist/
12
+ downloads/
13
+ eggs/
14
+ .eggs/
15
+ lib/
16
+ lib64/
17
+ parts/
18
+ sdist/
19
+ var/
20
+ wheels/
21
+ *.egg-info/
22
+ .installed.cfg
23
+ *.egg
24
+
25
+ # Testing
26
+ .pytest_cache/
27
+ .tox/
28
+ .coverage
29
+ .coverage.*
30
+ htmlcov/
31
+ .hypothesis/
32
+
33
+ # Virtual environments
34
+ venv/
35
+ ENV/
36
+ env/
37
+
38
+ # IDE
39
+ .vscode/
40
+ .idea/
41
+ *.swp
42
+ *.swo
43
+ *~
44
+
45
+ # System
46
+ .DS_Store
47
+ Thumbs.db
48
+
49
+ # Git
50
+ .git/
51
+ .gitignore
52
+
53
+ # Large files (video, database backups)
54
+ *.mp4
55
+ *.mov
56
+ *.avi
57
+ *.db.backup
58
+ data/*.db.old
59
+
60
+ # Logs
61
+ *.log
62
+ mcp_server.log
63
+
64
+ # Temporary files
65
+ *.tmp
66
+ *.temp
67
+ .env
68
+ .env.local