We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
.gitignore
1 parent 476b3de commit c414b81Copy full SHA for c414b81
.gitignore
@@ -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
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
60
61
+*.pyo
62
63
+# Git files
64
+.git/
0 commit comments