MoShow commited on
Commit
134635a
·
verified ·
1 Parent(s): e245600

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +63 -0
.gitignore ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.egg
5
+ *.egg-info/
6
+ dist/
7
+ build/
8
+ .env
9
+ .env.*
10
+ .venv/
11
+ venv/
12
+ pip-log.txt
13
+ *.db
14
+ .DS_Store
15
+
16
+ # Node/Vite/Next.js/React
17
+ node_modules/
18
+ npm-debug.log*
19
+ yarn-debug.log*
20
+ yarn-error.log*
21
+ .pnpm-debug.log*
22
+ *.log
23
+ .cache/
24
+ .next/
25
+ out/
26
+ .vite/
27
+ coverage/
28
+ .eslintcache
29
+
30
+ # Supabase
31
+ .supabase/
32
+ .supabase/config.toml
33
+ *.sqlite
34
+
35
+ # Hugging Face
36
+ # Never track your secret files!
37
+ .env
38
+ .env.*
39
+ # Or use a more specific ignore
40
+ # !.env.example # (if you want to include an example env)
41
+
42
+ # System
43
+ .DS_Store
44
+ Thumbs.db
45
+ .idea/
46
+ .vscode/
47
+ *.swp
48
+ *.swo
49
+
50
+ # OS Junk
51
+ *.bak
52
+ *.tmp
53
+
54
+ # Other
55
+ *.secret
56
+ *.token
57
+ secrets.json
58
+ credentials.json
59
+
60
+ # Optional: Ignore test output and temp files
61
+ test-output/
62
+ tmp/
63
+ temp/