Marco310 commited on
Commit
8b9d28a
·
1 Parent(s): ca91842

update gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +54 -2
.gitignore CHANGED
@@ -1,3 +1,55 @@
1
- .idea/
 
 
 
2
  .gradio/
3
- .env
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ===========================
2
+ # 1. Python & Compiled Files
3
+ # ===========================
4
+ # __pycache__
5
  .gradio/
6
+ __pycache__/
7
+ # (.pyc, .pyo, .pyd)
8
+ *.py[cod]
9
+ *$py.class
10
+
11
+ # ===========================
12
+ # 2. Environment Variables
13
+ # ===========================
14
+ # 絕對不要上傳 .env,裡面有 API Keys
15
+ .env
16
+ .env.*
17
+
18
+ *.key
19
+ *.pem
20
+
21
+ # ===========================
22
+ # ===========================
23
+ .backup
24
+ .backup.*
25
+
26
+ *.bak
27
+ *.swp
28
+ *~
29
+
30
+ # ===========================
31
+ # ===========================
32
+ logs/
33
+ tmp/
34
+
35
+ storage/*.db
36
+
37
+ storage/
38
+
39
+ # ===========================
40
+ # 5. OS & IDE Metadata
41
+ # ===========================
42
+
43
+ .DS_Store
44
+
45
+ Thumbs.db
46
+
47
+ .vscode/
48
+ .idea/
49
+
50
+ # ===========================
51
+ # 6. Virtual Environment
52
+ # ===========================
53
+ venv/
54
+ .venv/
55
+ env/