27 lines
460 B
Plaintext
27 lines
460 B
Plaintext
# ===== Configuration files that should not be committed =====
|
|
.env
|
|
|
|
# ===== Python virtual environments =====
|
|
.venv/
|
|
venv/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.pytest_cache/
|
|
|
|
# ===== IDE settings =====
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# ===== macOS system files =====
|
|
.DS_Store
|
|
|
|
# ===== Jupyter =====
|
|
.ipynb_checkpoints/
|
|
|
|
# ===== Large files (over 10MB should be excluded) =====
|
|
# Uncomment and add specific large files if needed
|
|
# data/large_dataset.csv
|
|
# models/large_model.pkl
|