Jaheen07 commited on
Commit
67f4464
·
verified ·
1 Parent(s): 58d748f

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +34 -0
.gitignore ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # .gitignore
2
+
3
+ # Environment files
4
+ .env
5
+ .env.local
6
+
7
+ # Python
8
+ __pycache__/
9
+ *.py[cod]
10
+ *$py.class
11
+ *.so
12
+ .Python
13
+
14
+ # Virtual environments
15
+ venv/
16
+ env/
17
+ ENV/
18
+
19
+ # IDE
20
+ .vscode/
21
+ .idea/
22
+
23
+ # Output files
24
+ *.pkl
25
+ *.csv
26
+ *.txt
27
+ output/
28
+ data/*.pkl
29
+ data/*.csv
30
+
31
+ # Secrets (never commit these)
32
+ *token*
33
+ *secret*
34
+ *.key