petter2025 commited on
Commit
51fed9c
·
verified ·
1 Parent(s): 6e28def

Create .hfignore

Browse files
Files changed (1) hide show
  1. .hfignore +42 -0
.hfignore ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ignore environment files in Hugging Face Spaces builds
2
+ .env
3
+ .env.example
4
+ .env.local
5
+ .env.production
6
+
7
+ # Ignore Python cache and build files
8
+ __pycache__/
9
+ *.py[cod]
10
+ *$py.class
11
+ *.so
12
+ .Python
13
+ build/
14
+ develop-eggs/
15
+ dist/
16
+ downloads/
17
+ eggs/
18
+ .eggs/
19
+ lib/
20
+ lib64/
21
+ parts/
22
+ sdist/
23
+ var/
24
+ wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+
29
+ # Ignore IDE files
30
+ .vscode/
31
+ .idea/
32
+ *.swp
33
+ *.swo
34
+
35
+ # Ignore logs
36
+ *.log
37
+ *.log.*
38
+ logs/
39
+
40
+ # Ignore system files
41
+ .DS_Store
42
+ Thumbs.db