deb-bootc-compose/.gitignore
robojerk cca68c90f6 Add comprehensive phase system, types, and treefile support for deb-bootc-compose
- Add internal/phases/ with complete phase management system
- Add internal/types/ with core data structures
- Add internal/treefile/ for OSTree treefile generation
- Update examples with YAML configurations
- Update .gitignore to properly exclude test artifacts and build outputs
- Update dependencies and configuration files
2025-08-19 20:48:46 -07:00

165 lines
1.9 KiB
Text

# Binaries and executables
compose
deb-bootc-compose
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Dependency directories (remove the comment below to include it)
# vendor/
# Go workspace file
go.work
# Build outputs and artifacts
build/
bin/
dist/
output/
# Project-specific build outputs and work directories
test-output/
test-output-enhanced/
work/
ostree-repo/
repo/
# Test directories and artifacts
test-*/
test-*/*
!test-*/test_*.go
!test-*/test_*.py
!test-*/test_*.sh
!test-*/README.md
!test-*/requirements.txt
# Cache and temporary directories
cache/
tmp/
temp/
*.tmp
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Log files
*.log
logs/
compose.log
# Configuration files with sensitive data
.env
.env.local
.env.*.local
config.local.yaml
config.local.yml
# Database files
*.db
*.sqlite
*.sqlite3
# Container and VM files
*.qcow2
*.vmdk
*.vdi
*.img
*.iso
# OSTree repository files
ostree-repo/
repo/
# Package manager files
*.deb
*.rpm
*.tar.gz
*.zip
# Test coverage
coverage.out
coverage.html
# Profiling data
*.prof
*.pprof
# Backup files
*.bak
*.backup
*.old
# Local development files
local/
dev/
development/
# Documentation build
docs/_build/
site/
# Node.js (if any frontend tools)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Python (if any Python tools)
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
env.bak/
venv.bak/
# Rust (if any Rust components)
target/
Cargo.lock
# Temporary build artifacts
*.o
*.a
*.so
*.dylib
*.dll
*.exe
*.out
*.app
# Specific project artifacts
apt-ostree_*.deb
compose-metadata.json
# Docker and container files
Dockerfile.production
*.dockerfile
# Test execution artifacts
test_end_to_end_workflow
test_integration
test_output_generation