Skip to content

Commit 6e2e09e

Browse files
itinanceDesperado
authored andcommitted
chore: Add .gitignore to prevent accidental commit of sensitive files
Add standard Python .gitignore covering bytecode, build artifacts, virtual environments, IDE files, test caches, and environment variable files (.env) that may contain secrets.
1 parent e35b843 commit 6e2e09e

1 file changed

Lines changed: 30 additions & 3 deletions

File tree

.gitignore

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,35 @@
1+
# Byte-compiled / optimized / DLL files
12
__pycache__/
2-
*.pyc
3-
*.egg-info/
3+
*.py[cod]
4+
*$py.class
5+
6+
# Distribution / packaging
47
dist/
58
build/
6-
.eggs/
9+
*.egg-info/
710
*.egg
11+
.eggs/
12+
13+
# Virtual environments
14+
.venv/
15+
venv/
16+
env/
17+
18+
# IDE
19+
.idea/
20+
.vscode/
21+
*.swp
22+
*.swo
23+
24+
# Testing
825
.pytest_cache/
26+
.coverage
27+
htmlcov/
28+
29+
# Environment variables
30+
.env
31+
.env.local
32+
33+
# OS
34+
.DS_Store
35+
Thumbs.db

0 commit comments

Comments
 (0)