Create .gitignore
Browse files- .gitignore +16 -0
.gitignore
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.DS_Store
|
| 2 |
+
Thumbs.db
|
| 3 |
+
|
| 4 |
+
__pycache__/
|
| 5 |
+
*.pyc
|
| 6 |
+
|
| 7 |
+
# Các thư mục ảo (Virtual Environment)
|
| 8 |
+
venv/
|
| 9 |
+
env/
|
| 10 |
+
.env
|
| 11 |
+
|
| 12 |
+
# Jupyter Notebook checkpoints
|
| 13 |
+
.ipynb_checkpoints/
|
| 14 |
+
|
| 15 |
+
# Các file log lỗi (nếu có)
|
| 16 |
+
*.log
|