The-BrightByte commited on
Commit
f71d6ad
·
1 Parent(s): c4b199e

env and all this sh*t

Browse files
Files changed (1) hide show
  1. .gitignore +102 -1
.gitignore CHANGED
@@ -1 +1,102 @@
1
- env
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ share/python-wheels/
20
+ *.egg-info/
21
+ .installed.cfg
22
+ *.egg
23
+ MANIFEST
24
+
25
+ # Virtual environments
26
+ env/
27
+ venv/
28
+ ENV/
29
+ env.bak/
30
+ venv.bak/
31
+ .venv/
32
+
33
+ # Environment variables
34
+ .env
35
+ .env.local
36
+ .env.*.local
37
+
38
+ # IDE
39
+ .vscode/
40
+ .idea/
41
+ *.swp
42
+ *.swo
43
+ *~
44
+ .DS_Store
45
+
46
+ # Jupyter Notebook
47
+ .ipynb_checkpoints
48
+
49
+ # PyCharm
50
+ .idea/
51
+
52
+ # VS Code
53
+ .vscode/
54
+ *.code-workspace
55
+
56
+ # Gradio
57
+ flagged/
58
+ gradio_cached_examples/
59
+ gradio_temp/
60
+
61
+ # Model files and cache
62
+ *.bin
63
+ *.safetensors
64
+ models/
65
+ .cache/
66
+ huggingface/
67
+
68
+ # Logs
69
+ *.log
70
+ logs/
71
+
72
+ # SSH keys
73
+ *.pem
74
+ *.key
75
+ y
76
+ y.pub
77
+ id_rsa
78
+ id_rsa.pub
79
+ *.pub
80
+
81
+ # Temporary files
82
+ *.tmp
83
+ *.temp
84
+ tmp/
85
+ temp/
86
+
87
+ # OS files
88
+ .DS_Store
89
+ .DS_Store?
90
+ ._*
91
+ .Spotlight-V100
92
+ .Trashes
93
+ ehthumbs.db
94
+ Thumbs.db
95
+
96
+ # Backup files
97
+ *.bak
98
+ *.backup
99
+ *_backup.py
100
+ *_copy.py
101
+ app_backup.py
102
+ app_copy.py