news-classifier/.gitignore

77 lines
731 B
Plaintext

# Java
*.class
*.jar
*.war
*.ear
target/
.mvn/
mvnw
mvnw.cmd
# IDE
.idea/
*.iml
.vscode/
*.swp
*.swo
.DS_Store
# Node
node_modules/
npm-debug.log
yarn-error.log
package-lock.json
yarn.lock
pnpm-lock.yaml
# Build
dist/
build/
*.log
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
ENV/
*.egg-info/
.pytest_cache/
# Tauri
src-tauri/target/
src-tauri/Cargo.lock
# ML Models
ml-module/models/*.pkl
ml-module/models/*.pt
ml-module/models/*.pth
ml-module/models/*.h5
# Data
ml-module/data/raw/*
ml-module/data/processed/*
!ml-module/data/raw/.gitkeep
!ml-module/data/processed/.gitkeep
# Environment
.env
.env.local
.env.*.local
# Database
*.db
*.sqlite
*.sqlite3
# Logs
logs/
*.log
# Temporary
*.tmp
*.temp