Skip to content

Commit c414b81

Browse files
committed
generated file: .gitignore
1 parent 476b3de commit c414b81

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

Diff for: .gitignore

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Python files
2+
*.pyc
3+
__pycache__/
4+
5+
# IDE files
6+
.idea/
7+
*.iml
8+
.vscode/
9+
10+
# Build artifacts
11+
dist/
12+
build/
13+
*.egg-info/
14+
15+
# Logs
16+
logs/
17+
18+
# Database files
19+
*.db
20+
*.sqlite3
21+
*.sql
22+
migrations/alembic/
23+
24+
# Environment variables
25+
.env
26+
27+
# Test files
28+
tests/unit/
29+
tests/integration/
30+
31+
# Coverage reports
32+
coverage.xml
33+
.coverage
34+
35+
# Temporary files
36+
*.swp
37+
*.swo
38+
*.bak
39+
40+
# Virtual environment
41+
venv/
42+
env/
43+
44+
# System files
45+
*.DS_Store
46+
Thumbs.db
47+
48+
# Logs
49+
*.log
50+
51+
# Docker-related files
52+
Dockerfile
53+
docker-compose.yml
54+
55+
# Poetry-related files
56+
poetry.lock
57+
poetry.toml
58+
59+
# Temporary files
60+
*.pyc
61+
*.pyo
62+
63+
# Git files
64+
.git/

0 commit comments

Comments
 (0)