roshnn24 commited on
Commit
9330c6f
·
verified ·
1 Parent(s): 4766a87

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +48 -0
.gitignore ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+
23
+ # Virtual Environment
24
+ venv/
25
+ ENV/
26
+ env/
27
+
28
+ # IDE
29
+ .idea/
30
+ .vscode/
31
+ *.swp
32
+ *.swo
33
+
34
+ # Project specific
35
+ /tmp/*
36
+ .env
37
+ chat_database.db
38
+ uploads/
39
+ *.db
40
+ *.sqlite3
41
+
42
+ # Logs
43
+ *.log
44
+ logs/
45
+
46
+ # System
47
+ .DS_Store
48
+ Thumbs.db