Nightfury16 commited on
Commit
3ddee0b
·
1 Parent(s): 9be6c71

Initial commit

Browse files
Files changed (1) hide show
  1. .gitignore +57 -0
.gitignore ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ __pycache__/
2
+ *.py[cod]
3
+ *$py.class
4
+
5
+ .venv/
6
+ env/
7
+ venv/
8
+ ENV/
9
+ env.bak/
10
+
11
+ .vscode/
12
+ .idea/
13
+
14
+ .DS_Store
15
+
16
+ .env
17
+ *.env.*
18
+
19
+ # Python distribution / packaging
20
+ build/
21
+ develop-eggs/
22
+ dist/
23
+ downloads/
24
+ eggs/
25
+ .eggs/
26
+ lib/
27
+ lib64/
28
+ parts/
29
+ sdist/
30
+ var/
31
+ *.egg-info/
32
+ .installed.cfg
33
+
34
+ # Unit test / coverage reports
35
+ htmlcov/
36
+ .tox/
37
+ .nox/
38
+ .coverage
39
+ .coverage.*
40
+ .cache
41
+ nosetests.xml
42
+ coverage.xml
43
+ *.cover
44
+ *.py,cover
45
+ .hypothesis/
46
+ .pytest_cache/
47
+
48
+ # Docker
49
+ *.pid
50
+ *.log
51
+ *.db
52
+ docker-compose.override.yml
53
+
54
+ # Misc
55
+ *.swp
56
+ *.swo
57
+ *.bak