Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 23 additions & 24 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
# Compiled Python files
*.pyc
__pycache__/
```
# Data and model outputs
core/data/processed/
core/outputs/

# Jupyter notebooks checkpoints
**/.ipynb_checkpoints/

# Environment files
.env
.env.local
*.env.*
# Python specific
__pycache__/
*.pyc
*.pyo
*.pyd
*.py~

# Dependencies
.venv/
venv/
node_modules/

# Build artifacts
dist/
build/
*.egg-info/
env/
.env
.env.local
.env.*

# Logs
# Logs and temp files
*.log
*.tmp
*.swp

# Editors
.vscode/
Expand All @@ -31,14 +31,13 @@ build/
.DS_Store
Thumbs.db

# Testing
# Coverage reports
.coverage
coverage/
htmlcov/
.coverage.*
.pytest_cache/
.mypy_cache/

# Distribution / packaging
*.tar.gz
*.whl
external/
dist/
build/
*.egg-info/
```
Loading