gary-boon commited on
Commit
b664ec4
·
1 Parent(s): e6aff69

Add .gitignore for Python project

Browse files

- Ignore __pycache__ and .pyc files
- Ignore virtual environments
- Ignore IDE files
- Ignore environment and security files

Files changed (1) hide show
  1. .gitignore +57 -0
.gitignore ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ MANIFEST
23
+
24
+ # Virtual Environment
25
+ venv/
26
+ ENV/
27
+ env/
28
+ .venv
29
+
30
+ # IDE
31
+ .vscode/
32
+ .idea/
33
+ *.swp
34
+ *.swo
35
+ *~
36
+ .DS_Store
37
+
38
+ # Environment variables
39
+ .env
40
+ .env.local
41
+
42
+ # Testing
43
+ .coverage
44
+ .pytest_cache/
45
+ htmlcov/
46
+
47
+ # Logs
48
+ *.log
49
+
50
+ # Security
51
+ *.key
52
+ *.pem
53
+ *.crt
54
+
55
+ # Model cache
56
+ .cache/
57
+ models/