ZunairaHawwar commited on
Commit
f29e638
·
verified ·
1 Parent(s): 0b0572f

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +38 -0
.gitignore ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # User data and security
2
+ users.json
3
+ .secure_data/
4
+ users/
5
+ *.mp3
6
+ *.wav
7
+
8
+ # Environment variables
9
+ .env
10
+
11
+ # Python cache
12
+ __pycache__/
13
+ *.pyc
14
+ *.pyo
15
+ *.pyd
16
+ .Python
17
+ env/
18
+ .env
19
+ .venv/
20
+ venv/
21
+ ENV/
22
+
23
+ # Jupyter Notebook
24
+ .ipynb_checkpoints
25
+
26
+ # IDE
27
+ .vscode/
28
+ .idea/
29
+ *.swp
30
+ *.swo
31
+
32
+ # OS
33
+ .DS_Store
34
+ Thumbs.db
35
+
36
+ # Model cache
37
+ .cache/
38
+ models/