botbottingbot commited on
Commit
205980f
·
verified ·
1 Parent(s): c679b29

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +123 -0
.gitignore ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ==========================================
2
+ # Python
3
+ # ==========================================
4
+ __pycache__/
5
+ *.pyc
6
+ *.pyo
7
+ *.pyd
8
+ *.pdb
9
+ *.pkl
10
+ *.egg-info/
11
+ *.eggs/
12
+ *.so
13
+
14
+ # Virtual environments
15
+ venv/
16
+ .env/
17
+ ENV/
18
+ env/
19
+ .venv/
20
+
21
+ # Jupyter
22
+ .ipynb_checkpoints/
23
+ *.ipynb
24
+
25
+ # ==========================================
26
+ # HuggingFace Spaces
27
+ # ==========================================
28
+ # HF build artifacts
29
+ hf_home/
30
+ hf_cache/
31
+ huggingface/
32
+ .local-huggingface/
33
+ *.lock
34
+
35
+ # Spaces autosave artifacts
36
+ spaces-assets/
37
+ frontend/node_modules/
38
+ app_files/
39
+ logs/
40
+
41
+ # Do not commit model weights unless intentional
42
+ *.bin
43
+ *.pt
44
+ *.pth
45
+ *.safetensors
46
+ *.onnx
47
+
48
+ # ==========================================
49
+ # System / OS files
50
+ # ==========================================
51
+ .DS_Store
52
+ Thumbs.db
53
+ desktop.ini
54
+
55
+ # ==========================================
56
+ # Environment & Secrets
57
+ # ==========================================
58
+ *.env
59
+ *.key
60
+ *.pem
61
+ secret*
62
+ config/
63
+ credentials.json
64
+ token*
65
+ auth*
66
+
67
+ # ==========================================
68
+ # Node (HF frontend builds)
69
+ # ==========================================
70
+ node_modules/
71
+ npm-debug.log
72
+ yarn-debug.log
73
+ yarn-error.log
74
+
75
+ # ==========================================
76
+ # Python packaging
77
+ # ==========================================
78
+ build/
79
+ dist/
80
+ *.egg
81
+ *.manifest
82
+
83
+ # ==========================================
84
+ # Compiled code
85
+ # ==========================================
86
+ *.class
87
+ *.o
88
+ *.a
89
+ *.out
90
+
91
+ # ==========================================
92
+ # Logs
93
+ # ==========================================
94
+ *.log
95
+ logs/
96
+ *.stackdump
97
+
98
+ # ==========================================
99
+ # Temporary files
100
+ # ==========================================
101
+ *.tmp
102
+ *.temp
103
+ tmp/
104
+ temp/
105
+ *.bak
106
+ *~
107
+ .cache/
108
+ .mypy_cache/
109
+ .pytest_cache/
110
+
111
+ # ==========================================
112
+ # VSCode / Editor
113
+ # ==========================================
114
+ .vscode/
115
+ .idea/
116
+ *.swp
117
+ *.swo
118
+
119
+ # ==========================================
120
+ # Git
121
+ # ==========================================
122
+ .gitignore~
123
+ .gitattributes~