Really-amin commited on
Commit
003574c
·
verified ·
1 Parent(s): 35ca5ec

Update .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +13 -27
.gitignore CHANGED
@@ -1,9 +1,3 @@
1
- # API Keys
2
- .env
3
- .env.production
4
- .env.local
5
- *.key
6
-
7
  # Python
8
  __pycache__/
9
  *.py[cod]
@@ -26,7 +20,7 @@ wheels/
26
  .installed.cfg
27
  *.egg
28
 
29
- # Virtual Environment
30
  venv/
31
  ENV/
32
  env/
@@ -36,28 +30,20 @@ env/
36
  .idea/
37
  *.swp
38
  *.swo
39
- *~
40
 
41
- # OS
42
- .DS_Store
43
- Thumbs.db
 
 
 
 
 
 
44
 
45
  # Logs
46
  *.log
47
- logs/
48
-
49
- # Database
50
- *.db
51
- *.sqlite
52
- *.sqlite3
53
 
54
- # Data
55
- data/database/
56
- data/exports/
57
- data/*.db
58
-
59
- # Binary files
60
- *.docx
61
- *.zip
62
- *.rar
63
- *.exe
 
 
 
 
 
 
 
1
  # Python
2
  __pycache__/
3
  *.py[cod]
 
20
  .installed.cfg
21
  *.egg
22
 
23
+ # Virtual environments
24
  venv/
25
  ENV/
26
  env/
 
30
  .idea/
31
  *.swp
32
  *.swo
 
33
 
34
+ # Data
35
+ data/*.db
36
+ data/*.db-journal
37
+ data/exports/
38
+ crypto_monitor.db
39
+ crypto_monitor.db-journal
40
+
41
+ # Environment
42
+ .env
43
 
44
  # Logs
45
  *.log
 
 
 
 
 
 
46
 
47
+ # OS
48
+ .DS_Store
49
+ Thumbs.db