Update .gitignore
Browse files- .gitignore +25 -7
.gitignore
CHANGED
|
@@ -1,7 +1,25 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Build artifacts
|
| 2 |
+
build/
|
| 3 |
+
target/
|
| 4 |
+
|
| 5 |
+
# IDE or editor temporary files
|
| 6 |
+
*.pyc # Python bytecode files
|
| 7 |
+
*.swp # Swap files (e.g., Vim)
|
| 8 |
+
|
| 9 |
+
# Virtual environment files
|
| 10 |
+
.env # Environment variables (consider a separate .env.example for defaults)
|
| 11 |
+
venv/ # Virtual environment directory (if using virtualenv)
|
| 12 |
+
|
| 13 |
+
# Logs and output files
|
| 14 |
+
*.log
|
| 15 |
+
|
| 16 |
+
# Documentation (if built automatically)
|
| 17 |
+
docs/generated/
|
| 18 |
+
|
| 19 |
+
# Coverage reports
|
| 20 |
+
coverage/
|
| 21 |
+
|
| 22 |
+
# Tests output (if temporary)
|
| 23 |
+
# (uncomment if your tests generate temporary files)
|
| 24 |
+
# __pycache__/
|
| 25 |
+
test_output.txt
|